Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-09-30 21:16:19 +0400
committerMarvin Thomas Rabe <m.rabe@echtzeitraum.de>2011-09-30 21:16:19 +0400
commit301d7bd3a9fed419b8f024f7aa7ecc2da80e3f51 (patch)
tree1ea83fc7741bd6299a7e78dc95390ace8fac9a04 /settings
parentccfa2dd24ce8313b9dede2d1c18761aa9e294e5c (diff)
action image for quota is now invisble when user does not hover over
Diffstat (limited to 'settings')
-rw-r--r--settings/css/settings.css4
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; }