diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-05-07 12:29:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 12:29:53 +0200 |
commit | d161d4473edbd80272ff36991186c9b1f19204ad (patch) | |
tree | 7980d13e99942e92f04c05d5b450c6a04cac8f94 /settings/css | |
parent | 94010e91d1075c0a67380bfcc881a2564e6e0b0f (diff) | |
parent | ea8e80c20ba2a2f4d6547a184ccc0358fa42940c (diff) | |
download | nextcloud-server-d161d4473edbd80272ff36991186c9b1f19204ad.tar.gz nextcloud-server-d161d4473edbd80272ff36991186c9b1f19204ad.zip |
Merge pull request #9029 from nextcloud/settings-restructure
Restructure server settings
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 41 |
1 files changed, 33 insertions, 8 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 3e7e5576640..abfa99015dd 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -151,6 +151,11 @@ input { width: 100%; } } +#personal-settings { + .section { + border: 0; + } +} #personal-settings { display: grid; @@ -905,11 +910,21 @@ span.version { } .section { - h2.app-name { - display: block; - margin: 8px 0; - } margin-bottom: 0; + /* use 2nd child since app-navigation-toggle is the first */ + &:not(:nth-child(2)) { + border-top: 1px solid $color-border; + } + + /* correctly display help icons next to headings */ + h2 { + margin-bottom: 22px; + .icon-info { + padding: 6px 20px; + vertical-align: text-bottom; + display: inline-block; + } + } } .personal-settings-setting-box .section { @@ -1054,6 +1069,10 @@ span.version { &.apps-experimental { flex-basis: 90%; } + h2.app-name { + display: block; + margin: 8px 0; + } } .app-description { p { @@ -1092,6 +1111,7 @@ span.version { position: absolute; padding-left: 6px; padding-top: 15px; + .enable { position: relative; top: -1px; @@ -1129,6 +1149,7 @@ table.grid td.date { #security-warning li { list-style: initial; margin: 10px 0; + list-style-position: inside; } #security-warning-state span { @@ -1195,7 +1216,8 @@ table.grid td.date { width: 300px; text-align: right; } - select:nth-child(2) { + select:nth-child(2), + input { width: 143px; } } @@ -1288,13 +1310,16 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { height: 50px; background-position: left center; } - .errors, .warnings { - color: #ce3702; + .errors, .errors a { + color: $color-error; + } + .warnings, .warnings a { + color: $color-warning; } } #security-warning > ul { - color: #ce3702; + color: $color-error; } #admin-tips li { |