diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-08-26 17:37:16 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-26 17:37:16 +0200 |
commit | 1dd7a8c319e8d9d0943b5bfd69c6eec1116542ce (patch) | |
tree | 2a02592938ef28884999bb874b9a52bbef95eb0f | |
parent | 3e168f833046dfb85cd10becef32f9f3c78321b1 (diff) | |
parent | c41089bcada846ac2c4f526ae4e96bea9d22f744 (diff) | |
download | nextcloud-server-1dd7a8c319e8d9d0943b5bfd69c6eec1116542ce.tar.gz nextcloud-server-1dd7a8c319e8d9d0943b5bfd69c6eec1116542ce.zip |
Merge pull request #18587 from owncloud/list-highlight
reduce grey tones to one for list highlight
-rw-r--r-- | apps/files/css/files.css | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a1b9312b152..4a56490fe0f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -96,7 +96,10 @@ min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } -#filestable tbody tr { background-color:#fff; height:51px; } +#filestable tbody tr { + background-color: #fff; + height: 51px; +} /* fit app list view heights */ .app-files #app-content>.viewcontainer { @@ -140,20 +143,20 @@ margin-bottom: 44px; } -#filestable tbody tr { background-color:#fff; height:40px; } +#filestable tbody tr { + background-color: #fff; + height: 40px; +} #filestable tbody tr:hover, #filestable tbody tr:focus, #filestable tbody .name:focus, -#filestable tbody tr:active { - background-color: rgb(240,240,240); -} +#filestable tbody tr:active, #filestable tbody tr.highlighted, #filestable tbody tr.highlighted .name:focus, -#filestable tbody tr.selected { - background-color: rgb(230,230,230); -} -#filestable tbody tr.searchresult { - background-color: rgb(240,240,240); +#filestable tbody tr.selected, +#filestable tbody tr.searchresult, +table tr.mouseOver td { + background-color: #f8f8f8; } tbody a { color:#000; } @@ -178,9 +181,6 @@ tr:focus span.extension { color: #777; } -table tr.mouseOver td { - background-color: #eee; -} table th, table th a { color: #999; } @@ -275,7 +275,7 @@ table thead th { background-color: #fff; } table.multiselect thead th { - background-color: rgba(220,220,220,.8); + background-color: rgba(248,248,248,.8); /* #f8f8f8 like other hover style */ color: #000; font-weight: bold; border-bottom: 0; @@ -706,7 +706,7 @@ table.dragshadow td.size { left: 0; right: 0; bottom: 0; - background-color: white; + background-color: #fff; background-repeat: no-repeat no-repeat; background-position: 50%; opacity: 0.7; |