diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 11:24:25 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-20 11:24:25 +0100 |
commit | aa5f726f1449474811d1df7852dac338a4066715 (patch) | |
tree | be18500915f7b4acbc8bed1d4c3f81490091becc /apps/files/css | |
parent | c05ea8cfc3ee74fd7af8fb8e73f1f1fc992e8c13 (diff) | |
download | nextcloud-server-aa5f726f1449474811d1df7852dac338a4066715.tar.gz nextcloud-server-aa5f726f1449474811d1df7852dac338a4066715.zip |
use slightly darker color for file actions background, fix fugly look for selected rows
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 66a24e0a155..97a8b679562 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -101,7 +101,10 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } font-size:.8em; } #fileList tr:hover .fileactions { /* background to distinguish when overlaying with file names */ - background:rgba(248, 248, 248,.9); box-shadow:-5px 0 7px rgba(248,248,248,.9); + background:rgba(248,248,248,.9); box-shadow:-5px 0 7px rgba(248,248,248,.9); +} +#fileList tr.selected:hover .fileactions { /* slightly darker color for selected rows */ + background:rgba(238,238,238,.9); box-shadow:-5px 0 7px rgba(238,238,238,.9); } #fileList .fileactions a.action img { position:relative; top:.2em; } #fileList a.action { display:inline; margin:-.5em 0; padding:1em .5em 1em .5em !important; } |