diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-08-28 12:16:53 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-08-28 12:16:53 +0200 |
commit | d3fc28a6ba7f7a5a10e9567ddb757c8794ffcaa5 (patch) | |
tree | 5475a43cc7bebbd827a8f934ee3f7c65593734f0 /apps | |
parent | 61bfa3652f5719d18748d490b802223fc78a26e5 (diff) | |
parent | 67f3dc232fc81c95f7320ff9e17e25b1fd20db44 (diff) | |
download | nextcloud-server-d3fc28a6ba7f7a5a10e9567ddb757c8794ffcaa5.tar.gz nextcloud-server-d3fc28a6ba7f7a5a10e9567ddb757c8794ffcaa5.zip |
Merge pull request #18606 from owncloud/fix-filename-overflow-sidebar
fix right sidebar causing filename overflow, fix #18383
Diffstat (limited to 'apps')
-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 25a3df53050..a9c85127c66 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 */ |