diff --git a/src/js/pe-ap.js b/src/js/pe-ap.js index d2a228fdea6..352564c2323 100644 --- a/src/js/pe-ap.js +++ b/src/js/pe-ap.js @@ -153,8 +153,8 @@ pe.urlhash = pe.urlpage.hash; pe.urlquery = pe.urlpage.params; - // Identify whether or not the device supports JavaScript and has a touchscreen - $html.removeClass('no-js').addClass(wet_boew_theme !== null ? wet_boew_theme.theme : '').addClass(pe.touchscreen ? 'touchscreen' : ''); + // Identify whether or not the device supports JavaScript, has a touchscreen and is a modern version of IE + $html.removeClass('no-js').addClass(wet_boew_theme !== null ? wet_boew_theme.theme : '').addClass(pe.touchscreen ? 'touchscreen' : '').addClass(pe.ie > 8 ? 'ie' + parseInt(pe.ie, 10) : ''); hlinks = pe.bodydiv.find('#wb-main a, #wb-skip a').filter(function () { return this.href.indexOf('#') !== -1; diff --git a/src/js/sass/includes/_tabbedinterface.scss b/src/js/sass/includes/_tabbedinterface.scss index 8df85744cc6..7b11ea4d347 100644 --- a/src/js/sass/includes/_tabbedinterface.scss +++ b/src/js/sass/includes/_tabbedinterface.scss @@ -533,4 +533,25 @@ .tabs-panel > div { display: block; } +} + +.ie9 { + .tabs-style-2 { + .tabs { + li { + a { + display: inline; + } + } + } + } + .tabs-style-3 { + .tabs { + li { + &:not(.tabs-toggle) { + display: inline; + } + } + } + } } \ No newline at end of file