diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:51:43 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-14 12:51:43 +0200 |
commit | 3aeda33a996d81d6ccdbbedaa5ff69b5b0f5e2de (patch) | |
tree | 39df4cb910bd7fa5ea3e340cfc1669a0d46e1da6 /core | |
parent | 8d5aff9db57b3496e3a42f3015e1ada76f7a9451 (diff) | |
parent | 69a9888a8103caceda32e62dcea8cd268fccfec2 (diff) | |
download | nextcloud-server-3aeda33a996d81d6ccdbbedaa5ff69b5b0f5e2de.tar.gz nextcloud-server-3aeda33a996d81d6ccdbbedaa5ff69b5b0f5e2de.zip |
Merge pull request #19630 from owncloud/fix-ie-pain
Fix more IE issues
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.css | 8 | ||||
-rw-r--r-- | core/css/fixes.css | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 4d3d3e39a37..ee68c45b1f2 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -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; } diff --git a/core/css/fixes.css b/core/css/fixes.css index 5f917dbbe81..71cb09cae76 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -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); |