diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-15 15:11:51 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-15 15:11:51 +0100 |
commit | 4dbe8c6771e64b3ac103b8a6b7f9845bb88148d4 (patch) | |
tree | 21ed13db71c11aef919b2e21b6ac458f1ef9d6c1 /apps/files | |
parent | 1d22cd5b229753bf35a78bc342a6b6e644971aed (diff) | |
download | nextcloud-server-4dbe8c6771e64b3ac103b8a6b7f9845bb88148d4.tar.gz nextcloud-server-4dbe8c6771e64b3ac103b8a6b7f9845bb88148d4.zip |
add CSS to shift header to account for when favorites are present
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 03496f4ffb7..a767c6a31f0 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -191,10 +191,15 @@ table th#headerName { width: 9999px; /* not really sure why this works better than 100% … table styling */ padding: 0; } + #headerName-container { position: relative; height: 50px; } +.has-favorites #headerName-container { + padding-left: 50px; +} + table th#headerSize, table td.filesize { text-align: right; } @@ -406,6 +411,9 @@ table td.filename .uploadtext { left: 18px; z-index: 10; } +.has-favorites .select-all { + left: 68px; +} #fileList tr td.filename { position: relative; |