summaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorSugaroverdose <n1nj4p0w3r@gmail.com>2015-01-17 01:43:42 +0300
committerSugaroverdose <n1nj4p0w3r@gmail.com>2015-01-17 01:43:42 +0300
commit141908bd9ca84dea65be4bb4a953a91d76bd48eb (patch)
treee8b68e9555388676aa48a5cba0f815a230ec262e /apps/files/css
parentb2879d3a994c2b1b64e0ddfa560da3a8814153d3 (diff)
downloadnextcloud-server-141908bd9ca84dea65be4bb4a953a91d76bd48eb.tar.gz
nextcloud-server-141908bd9ca84dea65be4bb4a953a91d76bd48eb.zip
Add ie8 text-overflow: ellipsis support
minimum browser window width ≈ 1280px
Diffstat (limited to 'apps/files/css')
-rw-r--r--apps/files/css/files.css11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 7c825c965a8..45be6e8b3b4 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -296,6 +296,10 @@ table td.filename .nametext {
max-width: 800px;
height: 100%;
}
+/* IE8 text-overflow: ellipsis support */
+.ie8 table td.filename .nametext {
+ min-width: 50%;
+}
.has-favorites #fileList td.filename a.name {
left: 50px;
margin-right: 50px;
@@ -308,6 +312,13 @@ table td.filename .nametext .innernametext {
display: inline-block;
vertical-align: top;
}
+/* IE8 text-overflow: ellipsis support */
+.ie8 table td.filename .nametext .innernametext {
+ white-space: nowrap;
+ word-wrap: normal;
+ -ms-text-overflow: ellipsis;
+ max-width: 47%;
+}
@media only screen and (min-width: 1366px) {
table td.filename .nametext .innernametext {