diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 15:33:33 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 15:33:33 +0200 |
commit | e39e6a5584e04d998f75e987aef398dd572b8538 (patch) | |
tree | 390bdb8ce68c94c9e66878307821268eb8a0a507 /apps/files/css/files.css | |
parent | 710d017eec7a97c1e58ef0cd4556555cf84b9b8f (diff) | |
download | nextcloud-server-e39e6a5584e04d998f75e987aef398dd572b8538.tar.gz nextcloud-server-e39e6a5584e04d998f75e987aef398dd572b8538.zip |
Fixed delete button CSS in ext storage list
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 55f3d17ac2b..4dac2b66a59 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -186,7 +186,8 @@ table th#headerSize, table td.filesize { table table td.filesize { padding: 0 16px; } -table th#headerDate, table td.date { +table th#headerDate, table td.date, +table th.column-last, table td.column-last { -moz-box-sizing: border-box; box-sizing: border-box; position: relative; @@ -237,9 +238,9 @@ table td.filename input.filename { cursor: text; } table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:3px 8px 8px 3px; } -table td.filename .nametext, .uploadtext, .modified { float:left; padding:14px 0; } +table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-child { float:left; padding:14px 0; } -.modified { +.modified, .column-last>span:first-child { position: relative; padding-left: 15px; overflow: hidden; @@ -247,8 +248,8 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:14px 0 width: 90%; } /* ellipsize long modified dates to make room for showing delete button */ -#fileList tr:hover .modified, -#fileList tr:focus .modified { +#fileList tr:hover .modified, #fileList tr:hover .column-last>span:first-child, +#fileList tr:focus .modified, #fileList tr:focus .column-last>span:first-child { width: 75%; } |