mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 08:19:48 -04:00
Merge pull request #1087 from alphagov/fix-tour-opacity-ie8
Fix highlighted step on tour in IE8
This commit is contained in:
@@ -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 {
|
.banner-warning {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% if help %}
|
{% if help %}
|
||||||
{% call banner_wrapper(type='tour') %}
|
{% call banner_wrapper(type='tour') %}
|
||||||
<p class="heading-medium">Try sending yourself this example</p>
|
<p class="heading-medium">Try sending yourself this example</p>
|
||||||
<div class="grid-row bottom-gutter" {% if help != '1' %}style="opacity: 0.6"{% endif %}>
|
<div class="grid-row bottom-gutter {% if help != '1' %}greyed-out-step{% endif %}">
|
||||||
<div class="column-one-sixth">
|
<div class="column-one-sixth">
|
||||||
<p class="heading-large" style="float: left;">1.</p>
|
<p class="heading-large" style="float: left;">1.</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid-row bottom-gutter" {% if help != '2' %}style="opacity: 0.6"{% endif %}>
|
<div class="grid-row bottom-gutter {% if help != '2' %}greyed-out-step{% endif %}">
|
||||||
<div class="column-one-sixth">
|
<div class="column-one-sixth">
|
||||||
<p class="heading-large">2.</p>
|
<p class="heading-large">2.</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="grid-row bottom-gutter" {% if help != '3' %}style="opacity: 0.6"{% endif %}>
|
<div class="grid-row bottom-gutter {% if help != '3' %}greyed-out-step{% endif %}">
|
||||||
<div class="column-one-sixth">
|
<div class="column-one-sixth">
|
||||||
<p class="heading-large">3.</p>
|
<p class="heading-large">3.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user