summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-02-11 11:49:08 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-02-11 11:49:08 -0800
commit2cb264425427dbcce1132d8e7c88aca40a0710ef (patch)
treec9b465d785cd2502c2bf09463bd350683d5aa1fa /apps
parentca99ff31dcc48a3eea343ba8020d92f4e3a526c6 (diff)
parent25b5b39e7aaf2931e1c726982bf6c82951f0ce3b (diff)
downloadnextcloud-server-2cb264425427dbcce1132d8e7c88aca40a0710ef.tar.gz
nextcloud-server-2cb264425427dbcce1132d8e7c88aca40a0710ef.zip
Merge pull request #1613 from owncloud/multiselect-row-width
Files: fix width of table header when files are selected
Diffstat (limited to 'apps')
-rw-r--r--apps/files/css/files.css5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 620fe8606be..1dae49c1cf4 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -25,7 +25,7 @@
#trash { height:17px; margin: 0 1em; z-index:1010; float: right; }
-#upload {
+#upload {
height:27px; padding:0; margin-left:0.2em; overflow:hidden;
}
#upload a {
@@ -74,8 +74,9 @@ table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-
/* Multiselect bar */
table.multiselect { top:63px; }
-table.multiselect thead { position:fixed; top:82px; z-index:1; }
+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%; }
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; }