mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 07:46:23 -04:00
Merge pull request #1088 from alphagov/fix-tick-cross-ie8
Fix ticks and crosses on team page in IE8
This commit is contained in:
BIN
app/assets/images/cross-grey-16px.png
Normal file
BIN
app/assets/images/cross-grey-16px.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 239 B |
BIN
app/assets/images/tick-16px.png
Normal file
BIN
app/assets/images/tick-16px.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 213 B |
BIN
app/assets/images/tick-white-16px.png
Normal file
BIN
app/assets/images/tick-white-16px.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 190 B |
@@ -30,6 +30,9 @@
|
|||||||
.banner-with-tick {
|
.banner-with-tick {
|
||||||
padding: $gutter-half ($gutter + $gutter-half);
|
padding: $gutter-half ($gutter + $gutter-half);
|
||||||
background-image: file-url('tick-white.png');
|
background-image: file-url('tick-white.png');
|
||||||
|
@include ie-lte(8) {
|
||||||
|
background-image: file-url('tick-white-16px.png');
|
||||||
|
}
|
||||||
background-size: 19px;
|
background-size: 19px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: $gutter-half $gutter-half;
|
background-position: $gutter-half $gutter-half;
|
||||||
|
|||||||
@@ -1,23 +1,41 @@
|
|||||||
%tick-cross {
|
%tick-cross {
|
||||||
|
|
||||||
@include core-16;
|
@include core-16;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-size: 19px 19px;
|
background-size: 19px 19px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 0 0;
|
background-position: 0 0;
|
||||||
padding: 1px 0 0 25px;
|
padding: 1px 0 0 25px;
|
||||||
|
|
||||||
|
@include ie-lte(8) {
|
||||||
|
background-position: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tick-cross {
|
.tick-cross {
|
||||||
|
|
||||||
&-tick {
|
&-tick {
|
||||||
|
|
||||||
@extend %tick-cross;
|
@extend %tick-cross;
|
||||||
background-image: file-url('tick.png');
|
background-image: file-url('tick.png');
|
||||||
|
|
||||||
|
@include ie-lte(8) {
|
||||||
|
background-image: file-url('tick-16px.png');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&-cross {
|
&-cross {
|
||||||
|
|
||||||
@extend %tick-cross;
|
@extend %tick-cross;
|
||||||
background-image: file-url('cross-grey.png');
|
|
||||||
color: $secondary-text-colour;
|
color: $secondary-text-colour;
|
||||||
|
background-image: file-url('cross-grey.png');
|
||||||
|
|
||||||
|
@include ie-lte(8) {
|
||||||
|
background-image: file-url('cross-grey-16px.png');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&-list {
|
&-list {
|
||||||
|
|||||||
Reference in New Issue
Block a user