mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-18 10:52:19 +01:00
890c6041f3
* Fixed some linting issues * Run npm tasks after scss cleanup * Revert "Run npm tasks after scss cleanup" This reverts commit 1103a0da68d1846ad592eb4a105046a939557830. * Property sort order for grid * Let's respest the property order in the mixins * Respect property sort order in reboot file * ::-ms-expand is a vendor-prefix, add it to the scss-lint disable * Revert hover mixin comment * Fixed missing mixin hover-focus
61 lines
1.0 KiB
SCSS
61 lines
1.0 KiB
SCSS
@mixin hover {
|
|
// TODO: re-enable along with mq4-hover-shim
|
|
// @if $enable-hover-media-query {
|
|
// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
|
|
// // Currently shimmed by https://github.com/twbs/mq4-hover-shim
|
|
// @media (hover: hover) {
|
|
// &:hover { @content }
|
|
// }
|
|
// }
|
|
// @else {
|
|
// scss-lint:disable Indentation
|
|
&:hover { @content }
|
|
// scss-lint:enable Indentation
|
|
// }
|
|
}
|
|
|
|
|
|
@mixin hover-focus {
|
|
@if $enable-hover-media-query {
|
|
&:focus { @content }
|
|
@include hover { @content }
|
|
} @else {
|
|
&:focus,
|
|
&:hover {
|
|
@content
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin plain-hover-focus {
|
|
@if $enable-hover-media-query {
|
|
&,
|
|
&:focus {
|
|
@content
|
|
}
|
|
@include hover { @content }
|
|
} @else {
|
|
&,
|
|
&:focus,
|
|
&:hover {
|
|
@content
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin hover-focus-active {
|
|
@if $enable-hover-media-query {
|
|
&:focus,
|
|
&:active {
|
|
@content
|
|
}
|
|
@include hover { @content }
|
|
} @else {
|
|
&:focus,
|
|
&:active,
|
|
&:hover {
|
|
@content
|
|
}
|
|
}
|
|
}
|