2018-11-04 22:46:42 +01:00
|
|
|
// =============================================================================
|
|
|
|
// Mixins
|
|
|
|
// =============================================================================
|
|
|
|
// Please note that the mixins partial shouldn't include any classes. This is so
|
|
|
|
// it can be included in any file without accidentally producing output
|
|
|
|
|
|
|
|
// Turns on font-smoothing when used. Use sparingly.
|
|
|
|
@mixin font-smoothing {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin clearfix() {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
content: ' ';
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin unlist() {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
font-style: normal;
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style-type: none;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// remove list styles, but only for the immediate element -
|
|
|
|
// allow nested lists inside it to keep the default style
|
|
|
|
|
|
|
|
@mixin unlistimmediate() {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
font-style: normal;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
list-style-type: none;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin transition($transition...) {
|
|
|
|
body.ready & {
|
|
|
|
transition: $transition;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin visuallyhidden {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
clip: auto;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
overflow: visible;
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@mixin visuallyvisible {
|
2019-11-12 14:43:09 +01:00
|
|
|
clip: auto;
|
2018-11-04 22:46:42 +01:00
|
|
|
height: auto;
|
|
|
|
width: auto;
|
2019-11-12 14:43:09 +01:00
|
|
|
margin: initial;
|
2018-11-04 22:46:42 +01:00
|
|
|
overflow: visible;
|
|
|
|
position: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@mixin icon () {
|
|
|
|
@include font-smoothing;
|
|
|
|
font-family: 'wagtail';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
text-transform: none;
|
|
|
|
speak: none;
|
|
|
|
text-decoration: none;
|
|
|
|
width: 1.3em;
|
|
|
|
line-height: 1em;
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 0.2em;
|
|
|
|
}
|
|
|
|
|
2020-06-09 21:57:09 +02:00
|
|
|
@mixin svg-icon ($size: 1.5em) {
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
2018-11-04 22:46:42 +01:00
|
|
|
|
|
|
|
// Applies given rules on hover, except for touch screens.
|
|
|
|
// Relies on feature detection to add a no-touch class on the html element.
|
|
|
|
@mixin hover {
|
|
|
|
.no-touch &:hover {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
2019-05-23 18:51:29 +02:00
|
|
|
|
|
|
|
// Where included, show the focus outline within focusable items instead of around them.
|
|
|
|
// This is useful when focusable items are tightly packed and there is no space in-between.
|
|
|
|
@mixin show-focus-outline-inside {
|
|
|
|
outline-offset: -1 * $focus-outline-width;
|
|
|
|
}
|