-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
column-rule-color.scss
32 lines (32 loc) · 1007 Bytes
/
column-rule-color.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/// Defines line color between columns
/// @param {string} $value
/// @returns {CSS} - `Property: Value` with prefixed properties
/// @see {link} - https://developer.mozilla.org/en-US/docs/Web/CSS/column-rule-color
/// @example - Available values
/// - `_color_`
/// - `initial`
/// - `inherit`
/// @example scss - Usage of column-rule-color
/// .example-class {
/// @include column-rule-color($value: blue);
/// }
/// @example css - Results of column-rule-color
/// .example-class {
/// -webkit-column-rule-color: blue;
/// -moz-column-rule-color: blue;
/// column-rule-color: blue;
/// }
/// @requires {mixin} render-vendor-prefixes
/// @author S0AndS0
/// @license AGPL-3.0
@mixin column-rule-color($value) {
@include render-vendor-prefixes(
$property: column-rule-color,
$value: $value,
$vendor-list: (
-webkit, // Chrome 50.0/4.0, Opera 37.0/15.0, Safari 9.0/3.1
-moz, // Firefox 52.0/2.0
),
$prefix: property,
);
}