From bacfa15110ff835580437306e4707f8012054bfe Mon Sep 17 00:00:00 2001 From: Lisa Felder Date: Wed, 8 Jul 2015 10:37:40 +0200 Subject: [PATCH] KKB-222 show opening-hours-icon also in IE by removing visibility:hidden and hide the * by fontsize:0 --- sass/module/_openinghours.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sass/module/_openinghours.scss b/sass/module/_openinghours.scss index a5b65cd..bfa68f7 100644 --- a/sass/module/_openinghours.scss +++ b/sass/module/_openinghours.scss @@ -107,13 +107,15 @@ .notice-star { @extend .icon-info-sign; - visibility: hidden; - margin-right: -2em; - padding-left: .5em; + margin-right: -16px; + padding-left: 8px; + // Using font-size:0 in order to make the * coming from opening-hours-module invisible. + // Visibility must not be hidden, since IE will also hide the :before-element. + font-size: 0; // Icon placement and font-face. &:before { - visibility: visible; + font-size: 16px; font-family: $base-icon-library-font; } }