diff options
author | Pete McFarlane <peterjohnmcfarlane@gmail.com> | 2013-09-06 10:01:11 +0100 |
---|---|---|
committer | Pete McFarlane <peterjohnmcfarlane@gmail.com> | 2013-09-06 10:01:11 +0100 |
commit | 83afba50704f86813250054ae94276e62d1b61f8 (patch) | |
tree | cd4e45535e2abbd4a792efc7cf799d8933f82533 | |
parent | e9849270e3b9a15b6694f78c7bca33bbed603888 (diff) | |
download | nextcloud-server-83afba50704f86813250054ae94276e62d1b61f8.tar.gz nextcloud-server-83afba50704f86813250054ae94276e62d1b61f8.zip |
prefix #filestable to tbody tr
-rw-r--r-- | apps/files/css/files.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 02a73ba83e5..b7e0d59b141 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -69,11 +69,11 @@ /* FILE TABLE */ #filestable { position: relative; top:37px; width:100%; } -tbody tr { background-color:#fff; height:2.5em; } -tbody tr:hover, tbody tr:active { +#filestable tbody tr { background-color:#fff; height:2.5em; } +#filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); } -tbody tr.selected { +#filestable tbody tr.selected { background-color: rgb(230,230,230); } tbody a { color:#000; } |