active_frontend 14.1.13 → 14.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f11f8b8f3658bc26e1000fcf84b64028bd2736a
|
|
4
|
+
data.tar.gz: b4d5eb691dd673dd315575795855835b02508c43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c933a08775053add48ef74eeb20e619b6e6032a822b7afacf66ede73f7933262cd4bdce675bfea0afc7e25cac27961a8e2a63c6bf2d27b01cbc6005eee5f5f1
|
|
7
|
+
data.tar.gz: 9bb3991e8f4540b9fdb571596550e69f865a3c8474c52fee6d5e80d25585ea6eebb4577641923e62a62e35f5c930b437159a0986b5b22b9796fd852aa975b7cf
|
|
@@ -77,7 +77,7 @@ $colors-brand-global: (
|
|
|
77
77
|
'tertiary': map-global-collect($colors-brand, 'tertiary'),
|
|
78
78
|
'quaditiary': map-global-collect($colors-brand, 'quaditiary')
|
|
79
79
|
);
|
|
80
|
-
$colors-inverted: (
|
|
80
|
+
$colors-brand-inverted: (
|
|
81
81
|
'lime': rgba(242,250,235,1),
|
|
82
82
|
'green': rgba(227,249,234,1),
|
|
83
83
|
'teal': rgba(234,251,248,1),
|
|
@@ -91,11 +91,11 @@ $colors-inverted: (
|
|
|
91
91
|
'orange': rgba(255,242,224,1),
|
|
92
92
|
'yellow': rgba(254,248,223,1)
|
|
93
93
|
);
|
|
94
|
-
$colors-inverted-global: (
|
|
95
|
-
'primary': map-global-collect($colors-inverted, 'primary'),
|
|
96
|
-
'secondary': map-global-collect($colors-inverted, 'secondary'),
|
|
97
|
-
'tertiary': map-global-collect($colors-inverted, 'tertiary'),
|
|
98
|
-
'quaditiary': map-global-collect($colors-inverted, 'quaditiary')
|
|
94
|
+
$colors-brand-inverted-global: (
|
|
95
|
+
'primary': map-global-collect($colors-brand-inverted, 'primary'),
|
|
96
|
+
'secondary': map-global-collect($colors-brand-inverted, 'secondary'),
|
|
97
|
+
'tertiary': map-global-collect($colors-brand-inverted, 'tertiary'),
|
|
98
|
+
'quaditiary': map-global-collect($colors-brand-inverted, 'quaditiary')
|
|
99
99
|
);
|
|
100
100
|
$colors-grayscale: (
|
|
101
101
|
'transparent': rgba(0,0,0,0),
|
|
@@ -110,8 +110,21 @@ $colors-grayscale: (
|
|
|
110
110
|
'light-haze': rgba(248,249,253,1),
|
|
111
111
|
'white': rgba(255,255,255,1)
|
|
112
112
|
);
|
|
113
|
+
$colors-grayscale-inverted: (
|
|
114
|
+
'transparent': rgba(0,0,0,0),
|
|
115
|
+
'dark-black': rgba(231,236,241,1),
|
|
116
|
+
'black': rgba(242,245,247,1),
|
|
117
|
+
'light-black': rgba(241,244,246,1),
|
|
118
|
+
'dark-gray': rgba(236,240,242,1),
|
|
119
|
+
'gray': rgba(236,239,242,1),
|
|
120
|
+
'light-gray': rgba(236,239,242,1),
|
|
121
|
+
'dark-haze': rgba(237,242,252,1),
|
|
122
|
+
'haze': rgba(243,246,255,1),
|
|
123
|
+
'light-haze': rgba(250,251,255,1),
|
|
124
|
+
'white': rgba(255,255,255,1)
|
|
125
|
+
);
|
|
113
126
|
$colors: map-collect($colors-brand, $colors-brand-global, $colors-grayscale);
|
|
114
|
-
$colors-inversions: map-collect($colors-inverted, $colors-inverted-global);
|
|
127
|
+
$colors-inversions: map-collect($colors-brand-inverted, $colors-brand-inverted-global, $colors-grayscale-inverted);
|
|
115
128
|
$colors-black-text: 'transparent', 'dark-haze', 'haze', 'light-haze', 'white';
|
|
116
129
|
|
|
117
130
|
// Common
|
|
@@ -41,19 +41,15 @@
|
|
|
41
41
|
|
|
42
42
|
&.badge-outline,
|
|
43
43
|
&.label-outline { color: color($name); }
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
@each $name, $color in map-keys($colors-inversions) {
|
|
47
|
-
.badge-color-#{$name},
|
|
48
|
-
.label-color-#{$name} {
|
|
49
44
|
&.badge-color-inverted,
|
|
50
45
|
&.label-color-inverted {
|
|
51
46
|
background: color-inverted($name);
|
|
52
47
|
border-color: color-inverted($name);
|
|
53
48
|
color: color($name);
|
|
49
|
+
|
|
50
|
+
&.badge-outline,
|
|
51
|
+
&.label-outline { border-color: color($name); }
|
|
54
52
|
}
|
|
55
|
-
&.badge-outline,
|
|
56
|
-
&.label-outline { border-color: color($name); }
|
|
57
53
|
}
|
|
58
54
|
}
|
|
59
55
|
|