diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-02-09 17:54:56 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-02-09 17:54:56 +0100 |
commit | 419eced65c0c0d86e6b237af8a5c4a9961aa21f5 (patch) | |
tree | 51aa9eb9d64a226cea83ebef1616061ea4df4dc4 /apps/files/css | |
parent | 60344bf1dd48e52baa129c8fc04e81a338c12551 (diff) | |
download | nextcloud-server-419eced65c0c0d86e6b237af8a5c4a9961aa21f5.tar.gz nextcloud-server-419eced65c0c0d86e6b237af8a5c4a9961aa21f5.zip |
Remove hascontrols - use original positioning.
I couldn't get Chromium and FF to agree, so a working hack
is better than a non-working one ;)
Diffstat (limited to 'apps/files/css')
-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 caebb5151de..620fe8606be 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -55,7 +55,7 @@ font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } -table { position:relative; width:100%; } +table { position:relative; top:37px; width:100%; } tbody tr { background-color:#fff; height:2.5em; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } tbody tr.selected { background-color:#eee; } @@ -73,9 +73,9 @@ 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 thead { position:fixed; z-index:1; } +table.multiselect { top:63px; } +table.multiselect thead { position:fixed; top:82px; z-index:1; } table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } -table.multiselect tbody { position: absolute; margin-top:2em; } table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } table td.filename a.name { display:block; height:1.5em; vertical-align:middle; margin-left:3em; } table tr[data-type="dir"] td.filename a.name span.nametext {font-weight:bold; } |