diff options
author | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-09-30 19:16:19 +0200 |
---|---|---|
committer | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-09-30 19:16:19 +0200 |
commit | 301d7bd3a9fed419b8f024f7aa7ecc2da80e3f51 (patch) | |
tree | 1ea83fc7741bd6299a7e78dc95390ace8fac9a04 /settings | |
parent | ccfa2dd24ce8313b9dede2d1c18761aa9e294e5c (diff) | |
download | nextcloud-server-301d7bd3a9fed419b8f024f7aa7ecc2da80e3f51.tar.gz nextcloud-server-301d7bd3a9fed419b8f024f7aa7ecc2da80e3f51.zip |
action image for quota is now invisble when user does not hover over
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index a0ed2c69f44..d68d05a73e6 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -13,13 +13,13 @@ input#identity { width:20em; } /* USERS */ form { display:inline; } td.name, td.password { padding-left:.8em; } -td.password>img, td.remove>img { display:none; cursor:pointer; } +td.password>img, td.remove>img, td.quota>img { visibility:hidden; } td.password>span { margin-right:1.2em; } td.password { width:12em; cursor:pointer; } td.remove { width:1em; padding-right:1em; } tr:hover>td.password>span { margin:0; cursor:pointer; } -tr:hover>td.remove>img, tr:hover>td.password>img { display:inline; cursor:pointer; } +tr:hover>td.remove>img, tr:hover>td.password>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>img { float:right; } li.selected { background-color:#ddd; } #content>table { margin-top:6.5em; } |