diff options
author | Robin Appelman <robin@icewind.nl> | 2017-06-12 15:24:55 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-06-15 14:06:54 +0200 |
commit | 2e8e6f95b99151edc0b236e474b32f1760af006a (patch) | |
tree | 6229a1a35f1fdbc93b11520dece04b5997d92da8 /settings/css/settings.css | |
parent | a74901fce17da6d88dbb82373fff523b834d692d (diff) | |
download | nextcloud-server-2e8e6f95b99151edc0b236e474b32f1760af006a.tar.gz nextcloud-server-2e8e6f95b99151edc0b236e474b32f1760af006a.zip |
show used space in user list
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'settings/css/settings.css')
-rw-r--r-- | settings/css/settings.css | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 5e97f1bb668..580db3de2f4 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -59,7 +59,7 @@ input#openid, input#webdav { } #avatarform .jcrop-keymgr { - display:none !important; + display: none !important; } #displayavatar { @@ -310,7 +310,7 @@ table.nostyle td { max-width: 580px; } -#security table th{ +#security table th { opacity: .5; } @@ -693,11 +693,17 @@ input#recoveryPassword { height: 37px; } -select.quota-user { +#userlist td.quota { position: relative; + width: 10em; +} + +select.quota-user { + position: absolute; left: 0; top: 0; width: 10em; + height: 34px; } select.quota.active { @@ -708,6 +714,20 @@ 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; +} + /* positioning fixes */ #newuser { padding-left: 3px; |