discourse/app/assets/stylesheets/vendor/font_awesome/_mixins.scss

27 lines
946 B
SCSS
Raw Normal View History

// Mixins
// --------------------------
2015-03-27 08:08:58 -04:00
@mixin fa-icon() {
display: inline-block;
2015-09-20 22:46:58 -04:00
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
2015-03-27 08:08:58 -04:00
font-size: inherit; // can't have font-size inherit on line above, so need to override
text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2013-12-09 16:27:49 -05:00
@mixin fa-icon-rotate($degrees, $rotation) {
2015-03-27 08:08:58 -04:00
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-webkit-transform: rotate($degrees);
-ms-transform: rotate($degrees);
transform: rotate($degrees);
}
2013-12-09 16:27:49 -05:00
@mixin fa-icon-flip($horiz, $vert, $rotation) {
2015-03-27 08:08:58 -04:00
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-webkit-transform: scale($horiz, $vert);
-ms-transform: scale($horiz, $vert);
transform: scale($horiz, $vert);
}