diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index 0a66225d7e..1423705ffc 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -170,7 +170,6 @@ thead { position: relative; font-weight: 300; font-size: 11px; - opacity: .57; overflow: hidden; text-overflow: ellipsis; } diff --git a/core/css/apps.scss b/core/css/apps.scss index f294f8aa51..a9e5a41910 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -18,16 +18,20 @@ /* BASE STYLING ------------------------------------------------------------ */ +h2, +h3, +h4 { + font-weight: 600; +} + h2 { font-size: 20px; - font-weight: 300; margin-bottom: 12px; line-height: 140%; } h3 { font-size: 15px; - font-weight: 300; margin: 12px 0; } @@ -842,7 +846,7 @@ $popovericon-size: 16px; // Required right-distance is half menu icon size + right padding // = 16px/2 + 14px = 22px // popover right margin is 5px, arrow width is 9px to center and border is 1px - // 22px - 9px - 5px - 1px = 7px + // 22px - 9px - 5px - 1px = 7px right: 7px; /* change this to adjust the arrow position */ border: solid transparent; diff --git a/core/css/guest.css b/core/css/guest.css index 4645e97910..47ceb7b93e 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -53,15 +53,19 @@ em { } /* heading styles */ +h2, +h3, +h4 { + font-weight: 600; +} + h2 { font-size: 20px; - font-weight: 300; margin-bottom: 12px; line-height: 140%; } h3 { font-size: 15px; - font-weight: 300; margin: 12px 0; } diff --git a/core/css/header.scss b/core/css/header.scss index 5fb4889d8f..d974c2992e 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -212,7 +212,7 @@ .header-appname { color: var(--color-primary-text); font-size: 16px; - font-weight: 300; + font-weight: 600; margin: 0; padding: 0; padding-right: 5px; diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 48d7b555f0..c4405f9fff 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -104,6 +104,11 @@ input { display: inline-grid; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr; + + /* Same font-weight exception as for .personal-settings-container */ + > div h3 { + font-weight: 300; + } } .personal-show-container { @@ -213,12 +218,14 @@ select { clear: both; } > div { - h2 { + h3 { position: relative; display: inline-flex; flex-wrap: nowrap; justify-content: flex-start; width: 100%; + font-weight: 300; + > label { white-space: nowrap; text-overflow: ellipsis; diff --git a/settings/js/federationsettingsview.js b/settings/js/federationsettingsview.js index d20d7bb78b..e2781833ed 100644 --- a/settings/js/federationsettingsview.js +++ b/settings/js/federationsettingsview.js @@ -62,7 +62,7 @@ render: function() { var self = this; _.each(this._inputFields, function(field) { - var $icon = self.$('#' + field + 'form h2 > .federation-menu'); + var $icon = self.$('#' + field + 'form h3 > .federation-menu'); var scopeMenu = new OC.Settings.FederationScopeMenu({field: field}); self.listenTo(scopeMenu, 'select:scope', function(scope) { @@ -189,8 +189,8 @@ }, _setFieldScopeIcon: function(field, scope) { - var $icon = this.$('#' + field + 'form > h2 .icon-federation-menu'); - + var $icon = this.$('#' + field + 'form > h3 .icon-federation-menu'); + $icon.removeClass('icon-password'); $icon.removeClass('icon-contacts-dark'); $icon.removeClass('icon-link'); diff --git a/settings/templates/settings/personal/personal.info.php b/settings/templates/settings/personal/personal.info.php index a0d766f88f..9919df521f 100644 --- a/settings/templates/settings/personal/personal.info.php +++ b/settings/templates/settings/personal/personal.info.php @@ -40,14 +40,14 @@ vendor_style('jcrop/css/jquery.Jcrop');