Repository URL to install this package:
|
Version:
3.12.11 ▾
|
// Utility Mixins
@mixin reset-button() {
background: none;
-webkit-appearance: none;
font-family: inherit;
font-size: inherit;
line-height: 1;
padding: 0;
margin: 0;
border: 0;
color: inherit;
}
@mixin blue-border-focus() {
@include clear-focus();
&:focus {
box-shadow: 0 0 0 3px rgba($blue, 0.5);
}
}
@mixin blue-border-focus--dark() {
@include clear-focus();
&:focus {
box-shadow: 0 0 0 2px rgba($lightblue, 0.85);
}
}
@mixin clear-focus() {
&:focus {
outline: none;
}
&::-moz-focus-inner {
border: 0;
}
}