active_frontend 14.0.90 → 14.0.91
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 276ec14288c545b63392513a01fecbe2d99c3374
|
4
|
+
data.tar.gz: d4903ce980e330a4e39283eac794de6920ea8dbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2485cdb8b7f874b4753b30d2654d3bd41ce06365c36651c0624b04321c5d376763ad3717063dbbbead2444e76ed03995a5503e6f12c0a2194ea084624de21942
|
7
|
+
data.tar.gz: fc17d73f99fb99135a81fe36bb8d658a8f9fe331ef5d190afcd6c2731e981abc7f85c63650492ec52b3c7918231b123144eb4e032eedc4cfc41b6065bc0ba5a9
|
@@ -69,6 +69,7 @@
|
|
69
69
|
border-bottom: 1px solid color(dark-haze);
|
70
70
|
border-right: 1px solid color(dark-haze);
|
71
71
|
}
|
72
|
+
.cohort-extra-low,
|
72
73
|
.cohort-low,
|
73
74
|
.cohort-medium-low,
|
74
75
|
.cohort-medium,
|
@@ -76,12 +77,12 @@
|
|
76
77
|
.cohort-high,
|
77
78
|
.cohort-hot,
|
78
79
|
.cohort-extra-hot { color: color(white); }
|
79
|
-
@each $name, $multiplier in (low: 3, medium-low: 2, medium: 1) {
|
80
|
-
.cohort-#{$name} { background: lighten(color(primary), percentage((
|
80
|
+
@each $name, $multiplier in (extra-low: 3.5, low: 3, medium-low: 2, medium: 1) {
|
81
|
+
.cohort-#{$name} { background: lighten(color(primary), percentage((12.5 * $multiplier) / 100)); }
|
81
82
|
}
|
82
83
|
.cohort-medium-high {
|
83
84
|
background: color(primary);
|
84
85
|
}
|
85
86
|
@each $name, $multiplier in (high: 1, hot: 2, extra-hot: 3) {
|
86
|
-
.cohort-#{$name} { background: darken(color(primary), percentage((
|
87
|
+
.cohort-#{$name} { background: darken(color(primary), percentage((12.5 * $multiplier) / 100)); }
|
87
88
|
}
|