diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-27 14:49:40 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-27 14:49:40 +0200 |
commit | 67f3dc232fc81c95f7320ff9e17e25b1fd20db44 (patch) | |
tree | c1f916cd2881b1d2d06a7d9b40c102d9b50e8215 /apps/files | |
parent | 46978b616cf18d86c3b5790560d233ebde1fc8e7 (diff) | |
download | nextcloud-server-67f3dc232fc81c95f7320ff9e17e25b1fd20db44.tar.gz nextcloud-server-67f3dc232fc81c95f7320ff9e17e25b1fd20db44.zip |
fix right sidebar causing filename overflow, fix #18383
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 4a56490fe0f..fe57e4ef3c3 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -373,30 +373,53 @@ table td.filename .nametext .innernametext { max-width: 47%; } -@media only screen and (min-width: 1366px) { +@media only screen and (min-width: 1500px) { + table td.filename .nametext .innernametext { + max-width: 790px; + } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 390px; + } +} +@media only screen and (min-width: 1366px) and (max-width: 1500px) { table td.filename .nametext .innernametext { max-width: 660px; } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 290px; + } } @media only screen and (min-width: 1200px) and (max-width: 1366px) { table td.filename .nametext .innernametext { max-width: 500px; } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 230px; + } } @media only screen and (min-width: 1100px) and (max-width: 1200px) { table td.filename .nametext .innernametext { max-width: 400px; } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 230px; + } } @media only screen and (min-width: 1000px) and (max-width: 1100px) { table td.filename .nametext .innernametext { max-width: 310px; } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 230px; + } } @media only screen and (min-width: 768px) and (max-width: 1000px) { table td.filename .nametext .innernametext { max-width: 240px; } + .with-app-sidebar table td.filename .nametext .innernametext { + max-width: 230px; + } } /* for smaller resolutions - see mobile.css */ |