Merge pull request #1087 from alphagov/fix-tour-opacity-ie8

Fix highlighted step on tour in IE8
This commit is contained in:
Chris Hill-Scott
2017-01-23 15:24:13 +00:00
committed by GitHub
2 changed files with 15 additions and 3 deletions

View File

@@ -167,6 +167,18 @@
}
.greyed-out-step {
$opacity: 0.6;
opacity: $opacity;
@include ie-lte(8) {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=" + ($opacity * 100) + ")";
}
}
}
.banner-warning {