summaryrefslogtreecommitdiffstats
path: root/settings/css
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-04-13 17:12:06 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-04-13 21:43:36 +0200
commit74732cc0d8ab8d5327f0bdc4da2817a02abee8a5 (patch)
tree2b3af402407834352823b5cf97a5b9eb5a026882 /settings/css
parent660aa7ff1e7bcb61d5dcb103014da39b8a257899 (diff)
downloadnextcloud-server-74732cc0d8ab8d5327f0bdc4da2817a02abee8a5.tar.gz
nextcloud-server-74732cc0d8ab8d5327f0bdc4da2817a02abee8a5.zip
Fix user list
* the name cell was changed from td to th because of accessibility issues - this adjusts the CSS and JS to behave like before
Diffstat (limited to 'settings/css')
-rw-r--r--settings/css/settings.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css
index 747e370617e..f610e96eea8 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -138,6 +138,11 @@ span.usersLastLoginTooltip { white-space: nowrap; }
display : none;
}
+/* because of accessibility the name cell is <th> - therefore we enforce the black color */
+#userlist th.name {
+ color: #000000;
+}
+
tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; }
tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; }
td.remove {