[IE8] Remove non-working ellipsis support

This prevents the name element to be too wide, which would cause users
to mistakenly click on it instead of the empty space when wanting to
focus on a file for the sidebar.

Also fixed the close button on the sidebar (make it appear)
This commit is contained in:
Vincent Petry 2015-10-01 11:38:03 +02:00 committed by Morris Jobke
parent eeac6e2ab1
commit 9e66653fb3
2 changed files with 4 additions and 11 deletions

View File

@ -330,10 +330,6 @@ table td.filename .nametext {
max-width: 800px; max-width: 800px;
height: 100%; height: 100%;
} }
/* IE8 text-overflow: ellipsis support */
.ie8 table td.filename .nametext {
min-width: 50%;
}
.has-favorites #fileList td.filename a.name { .has-favorites #fileList td.filename a.name {
left: 50px; left: 50px;
margin-right: 50px; margin-right: 50px;
@ -346,13 +342,6 @@ table td.filename .nametext .innernametext {
display: inline-block; display: inline-block;
vertical-align: top; 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: 1500px) { @media only screen and (min-width: 1500px) {
table td.filename .nametext .innernametext { table td.filename .nametext .innernametext {

View File

@ -24,6 +24,10 @@ select {
background-image: url('../img/actions/checkmark.png'); background-image: url('../img/actions/checkmark.png');
} }
.ie8 .icon-close {
background-image: url('../img/actions/close.png');
}
.lte9 .icon-triangle-e { .lte9 .icon-triangle-e {
background-image: url('../img/actions/triangle-e.png'); background-image: url('../img/actions/triangle-e.png');
} }