diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-07 18:19:47 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-08-10 14:16:42 +0200 |
commit | 1283ecac23934f787e39f54d06e7b5701f902926 (patch) | |
tree | c6c14a48586e5964c7145257380b1556576ead46 /apps/files/css | |
parent | 5e7e0c7e2d62a56db5cf0f712989e006553b1cbb (diff) | |
download | nextcloud-server-1283ecac23934f787e39f54d06e7b5701f902926.tar.gz nextcloud-server-1283ecac23934f787e39f54d06e7b5701f902926.zip |
remove whitespace on right cause of moved delete icon
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 231434ec38d..5e24e696209 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -249,8 +249,8 @@ table th.column-last, table td.column-last { box-sizing: border-box; position: relative; /* this can not be just width, both need to be set … table styling */ - min-width: 176px; - max-width: 176px; + min-width: 130px; + max-width: 130px; } /* Multiselect bar */ @@ -326,14 +326,7 @@ table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-chi position: relative; overflow: hidden; text-overflow: ellipsis; - width: 90%; -} -/* ellipsize long modified dates to make room for showing delete button */ -#fileList tr:hover .modified, -#fileList tr:focus .modified, -#fileList tr:hover .column-last>span:first-child, -#fileList tr:focus .column-last>span:first-child { - width: 75%; + width: 110px; } /* TODO fix usability bug (accidental file/folder selection) */ @@ -372,25 +365,27 @@ table td.filename .nametext .innernametext { @media only screen and (min-width: 1366px) { table td.filename .nametext .innernametext { - max-width: 620px; + max-width: 660px; } } - @media only screen and (min-width: 1200px) and (max-width: 1366px) { table td.filename .nametext .innernametext { - max-width: 460px; + max-width: 500px; } } - -@media only screen and (min-width: 1000px) and (max-width: 1200px) { +@media only screen and (min-width: 1100px) and (max-width: 1200px) { table td.filename .nametext .innernametext { - max-width: 270px; + max-width: 400px; + } +} +@media only screen and (min-width: 1000px) and (max-width: 1100px) { + table td.filename .nametext .innernametext { + max-width: 310px; } } - @media only screen and (min-width: 768px) and (max-width: 1000px) { table td.filename .nametext .innernametext { - max-width: 190px; + max-width: 240px; } } |