OpenBuilds-CONTROL/app/lib/fontawesome5/less/_mixins.less

57 wiersze
1.2 KiB
Plaintext
Czysty Zwykły widok Historia

2018-06-19 08:07:03 +00:00
// Mixins
// --------------------------
.fa-icon() {
-moz-osx-font-smoothing: grayscale;
2018-06-19 20:25:40 +00:00
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
2018-06-19 08:07:03 +00:00
}
.fa-icon-rotate(@degrees, @rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
2018-06-19 20:25:40 +00:00
transform: rotate(@degrees);
2018-06-19 08:07:03 +00:00
}
.fa-icon-flip(@horiz, @vert, @rotation) {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
2018-06-19 20:25:40 +00:00
transform: scale(@horiz, @vert);
2018-06-19 08:07:03 +00:00
}
// Only display content to screen readers. A la Bootstrap 4.
//
// See: http://a11yproject.com/posts/how-to-hide-content/
.sr-only() {
2018-06-19 20:25:40 +00:00
border: 0;
clip: rect(0,0,0,0);
2018-06-19 08:07:03 +00:00
height: 1px;
margin: -1px;
overflow: hidden;
2018-06-19 20:25:40 +00:00
padding: 0;
position: absolute;
width: 1px;
2018-06-19 08:07:03 +00:00
}
// Use in conjunction with .sr-only to only display content when it's focused.
//
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
//
// Credit: HTML5 Boilerplate
.sr-only-focusable() {
&:active,
&:focus {
2018-06-19 20:25:40 +00:00
clip: auto;
2018-06-19 08:07:03 +00:00
height: auto;
margin: 0;
overflow: visible;
2018-06-19 20:25:40 +00:00
position: static;
width: auto;
2018-06-19 08:07:03 +00:00
}
}