Skip to content
Snippets Groups Projects
Commit 141908bd authored by Sugaroverdose's avatar Sugaroverdose
Browse files

Add ie8 text-overflow: ellipsis support

minimum browser window width ≈ 1280px
parent b2879d3a
Branches
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment