mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
42 lines
848 B
SCSS
42 lines
848 B
SCSS
@charset "UTF-8";
|
|
|
|
/// Outputs the spec and prefixed versions of the `::selection` pseudo-element.
|
|
///
|
|
/// @param {Bool} $current-selector [false]
|
|
/// If set to `true`, it takes the current element into consideration.
|
|
///
|
|
/// @example scss - Usage
|
|
/// .element {
|
|
/// @include selection(true) {
|
|
/// background-color: #ffbb52;
|
|
/// }
|
|
/// }
|
|
///
|
|
/// @example css - CSS Output
|
|
/// .element::-moz-selection {
|
|
/// background-color: #ffbb52;
|
|
/// }
|
|
///
|
|
/// .element::selection {
|
|
/// background-color: #ffbb52;
|
|
/// }
|
|
|
|
@mixin selection($current-selector: false) {
|
|
@if $current-selector {
|
|
&::-moz-selection {
|
|
@content;
|
|
}
|
|
|
|
&::selection {
|
|
@content;
|
|
}
|
|
} @else {
|
|
::-moz-selection {
|
|
@content;
|
|
}
|
|
|
|
::selection {
|
|
@content;
|
|
}
|
|
}
|
|
}
|