diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-18 12:10:05 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-18 12:21:39 +0200 |
commit | 86fd9ca9e0238fc1f91cc01625d1c76618cd1c30 (patch) | |
tree | 25e3526ae4c706479364c9aadcf9854afd9ab2f1 /settings/css | |
parent | 129fdf2e2ec8caedadf7896e3400213144c23a8e (diff) | |
download | nextcloud-server-86fd9ca9e0238fc1f91cc01625d1c76618cd1c30.tar.gz nextcloud-server-86fd9ca9e0238fc1f91cc01625d1c76618cd1c30.zip |
fix list height and border to be as in Files
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 3cebcfb8d9c..6dbaf6d7ae6 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -239,8 +239,17 @@ table.grid { width: 100%; } -table.grid th { height:2em; color:#999; } -table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; } +table.grid th { + height: 2em; + color: #999; +} +table.grid th, table.grid td { + border-bottom: 1px solid #eee; + padding: 0 .5em; + padding-left: .8em; + text-align: left; + font-weight: normal; +} td.name, td.password { padding-left:.8em; } td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; } td.password, td.quota, td.displayName { width:12em; cursor:pointer; } @@ -260,7 +269,12 @@ span.usersLastLoginTooltip { white-space: nowrap; } /* because of accessibility the name cell is <th> - therefore we enforce the black color */ #userlist th.name { - color: #000000; + color: #000; +} + +/* use same height as in files app */ +#userlist tr { + height: 51px; } #userlist .mailAddress .loading-small { |