diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-04-25 12:26:58 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-05-03 10:32:14 +0200 |
commit | 4b550eb699f611e1af1e116e4aa757389353d01e (patch) | |
tree | a580c2d9844290fc9499694b795d908b5bb12a81 /settings/css | |
parent | e6a463d1f3b7b5cdd89b67e260323f507898ffd5 (diff) | |
download | nextcloud-server-4b550eb699f611e1af1e116e4aa757389353d01e.tar.gz nextcloud-server-4b550eb699f611e1af1e116e4aa757389353d01e.zip |
Move quota bar to info section and make it a bit simpler
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 6108a777327..3e7e5576640 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -160,6 +160,16 @@ input { .section { padding: 10px 10px; } + + .personal-info { + margin-right: 10%; + margin-bottom: 20px; + } + .personal-info[class^='icon-'], .personal-info[class*=' icon-'] { + background-position: 0px 2px; + padding-left: 30px; + opacity: 0.7; + } } @@ -270,6 +280,26 @@ input { } } + +#body-settings #quota { + cursor: default; + position: relative; + progress { + height: 6px; + &::-moz-progress-bar { + border-radius: 3px 0 0 3px; + } + &::-webkit-progress-value { + border-radius: 3px 0 0 3px; + } + } + div { + font-weight: normal; + white-space: nowrap; + } +} + + /* verify accounts */ /* only show pointer cursor when popup will be there */ .verification-dialog { |