diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-03-04 16:10:11 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-03-04 16:10:11 +0100 |
commit | afe7ea8ca2c834fc54210e8724f3cf9464ec5893 (patch) | |
tree | a17b08bcfe24f0a61e601b855d404f2cd019023d /apps | |
parent | ef70978524ad0f00c3e5f03a489753547afee45a (diff) | |
download | nextcloud-server-afe7ea8ca2c834fc54210e8724f3cf9464ec5893.tar.gz nextcloud-server-afe7ea8ca2c834fc54210e8724f3cf9464ec5893.zip |
fix files table CSS specificity issue causing multiselect bar overlap, fix #2075
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index fd06c61ce2c..4d2b16e6f1c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -73,7 +73,7 @@ table th#headerSize, table td.filesize { min-width:3em; padding:0 1em; text-alig table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-align:left; } /* Multiselect bar */ -table.multiselect { top:63px; } +#filestable.multiselect { top:63px; } table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } table.multiselect #headerName { width: 100%; } |