diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-12-11 17:36:14 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-12-11 18:21:25 +0100 |
commit | 81e9d43e237fe80bf0b053bc8f5b34219da11a6e (patch) | |
tree | 886c04392d8e8b1b1309a66f43883abaf0af3376 /apps/files/css | |
parent | acc9af8fc92ea315668e80617e5496e60a97d788 (diff) | |
download | nextcloud-server-81e9d43e237fe80bf0b053bc8f5b34219da11a6e.tar.gz nextcloud-server-81e9d43e237fe80bf0b053bc8f5b34219da11a6e.zip |
Move file thumbnail into the label element
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 60afcf9b579..20f402e90b6 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -244,6 +244,15 @@ table td.filename a.name { line-height: 50px; padding: 0; } +table td.filename .thumbnail { + display: inline-block; + width: 32px; + height: 32px; + margin-left: 8px; + margin-top: 9px; + cursor: pointer; + float: left; +} table td.filename input.filename { width: 70%; margin-top: 1px; @@ -383,6 +392,7 @@ table td.filename .uploadtext { /* sometimes checkbox height is bigger (KDE/Qt), so setting to absolute * to prevent it to increase the height */ position: absolute; + z-index: 10; } #fileList tr td.filename>input[type="checkbox"] + label { left: 0; @@ -395,6 +405,7 @@ table td.filename .uploadtext { position: absolute; top: 18px; left: 18px; + z-index: 10; } #fileList tr td.filename { |