diff options
author | Marin Treselj <pixelipo@users.noreply.github.com> | 2018-10-03 10:09:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 10:09:57 +0200 |
commit | a92e8b4c18097705ededfb4bdde21088109275b8 (patch) | |
tree | e8d8ecefd4e5d2e79855f697b937616aee1f21e6 /settings/css | |
parent | 6979b2ea0c93a52059848c8bb8d562f7b670bc57 (diff) | |
parent | 26e952f3f245b44da6e15f21979b3b1243727651 (diff) | |
download | nextcloud-server-a92e8b4c18097705ededfb4bdde21088109275b8.tar.gz nextcloud-server-a92e8b4c18097705ededfb4bdde21088109275b8.zip |
Merge pull request #11538 from nextcloud/heading-bold
Set headings to Semibold for better information architecture
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 48d7b555f09..c4405f9fffe 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; |