diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-27 16:35:33 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-27 22:13:19 +0200 |
commit | f09a70e9b56a7f83857dad684cc4574a08db3421 (patch) | |
tree | 3d681997a775933fc811f56cd754ee481b61f655 /settings/css | |
parent | d54253d4e4b7a61ad6f1ed1a68720fc4573f29c4 (diff) | |
download | nextcloud-server-f09a70e9b56a7f83857dad684cc4574a08db3421.tar.gz nextcloud-server-f09a70e9b56a7f83857dad684cc4574a08db3421.zip |
Quota bar fix on user list
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 509d867baf9..1ba3c76bfed 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -680,18 +680,30 @@ input#recoveryPassword { #userlist td.quota { position: relative; width: 10em; + progress.quota-user-progress { + position: absolute; + width: calc(10em + 0px); + margin-top: -7px; + z-index: 0; + margin-left: 1px; + height: 3px; + } } select { &.quota-user { - position: absolute; - left: 0; - top: 0; width: 10em; height: 34px; + z-index: 150; + position: relative; } - &.quota.active { - background: #fff; + + progress.quota-user-progress { + position: absolute; + width: calc(10em + 0px); + margin-top: -7px; + z-index: 0; + margin-left: 1px; + height: 3px; } } @@ -699,20 +711,6 @@ input.userFilter { width: 200px; } -.quota_progress_container { - position: absolute; - left: 0; - top: 0; - width: 10em; - margin: 3px 3px 3px 0; - border-radius: 3px; -} - -.quota_progress { - background-color: #eee; - height: 34px; -} - #newusergroups + input[type='submit'] { position: relative; top: -1px; |