mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 09:40:27 +08:00
fix Issue with fa-rotate-* in IE9 #3527
This commit is contained in:
parent
2649d91d18
commit
8b1f54d00e
7
css/font-awesome.css
vendored
7
css/font-awesome.css
vendored
@ -157,6 +157,13 @@
|
|||||||
-o-transform: scale(1, -1);
|
-o-transform: scale(1, -1);
|
||||||
transform: scale(1, -1);
|
transform: scale(1, -1);
|
||||||
}
|
}
|
||||||
|
:root .fa-rotate-90,
|
||||||
|
:root .fa-rotate-180,
|
||||||
|
:root .fa-rotate-270,
|
||||||
|
:root .fa-flip-horizontal,
|
||||||
|
:root .fa-flip-vertical {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
.fa-stack {
|
.fa-stack {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -7,3 +7,12 @@
|
|||||||
|
|
||||||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
|
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
|
||||||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
|
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
|
||||||
|
|
||||||
|
// Hook for IE8-9
|
||||||
|
:root .@{fa-css-prefix}-rotate-90,
|
||||||
|
:root .@{fa-css-prefix}-rotate-180,
|
||||||
|
:root .@{fa-css-prefix}-rotate-270,
|
||||||
|
:root .@{fa-css-prefix}-flip-horizontal,
|
||||||
|
:root .@{fa-css-prefix}-flip-vertical {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user