Merge pull request #19630 from owncloud/fix-ie-pain

Fix more IE issues
This commit is contained in:
Thomas Müller 2015-10-14 12:51:43 +02:00
commit 3aeda33a99
3 changed files with 18 additions and 1 deletions

View File

@ -734,6 +734,10 @@ table.dragshadow td.size {
margin: -10px;
}
html.ie8 #controls .button.new {
padding-right: 0;
}
.newFileMenu {
width: 140px;
margin-left: -56px;
@ -785,3 +789,4 @@ table.dragshadow td.size {
color: #000;
padding: 0;
}

View File

@ -307,8 +307,13 @@
-o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
}
.ie8 .bubble {
.ie .bubble,
.ie #app-navigation .app-navigation-entry-menu,
.ie .bubble:after,
.ie #app-navigation .app-navigation-entry-menu:after {
border: 1px solid #eee;
}
.ie8 .bubble {
margin-top: 18px;
}
.ie8 .bubble:after {
@ -690,6 +695,7 @@ em {
.popovermenu .menuitem .no-icon {
display: inline-block;
width: 16px;
height: 16px;
margin-right: 10px;
}

View File

@ -42,6 +42,12 @@ select {
background-image: url('../img/actions/settings.png');
}
.lte9 input[type="submit"], .lte9 input[type="button"],
.lte9 button, .lte9 .button,
.lte9 #quota, .lte9 select, .lte9 .pager li a {
background-color: #f1f1f1;
}
/* IE8 needs PNG image for header logo */
.ie8 #header .logo {
background-image: url(../img/logo-icon-175px.png);