vendor/assets/stylesheets/components/_cohort.scss in active_frontend-14.0.90 vs vendor/assets/stylesheets/components/_cohort.scss in active_frontend-14.0.91
- old
+ new
@@ -67,21 +67,22 @@
.cohort-empty {
background: color(white);
border-bottom: 1px solid color(dark-haze);
border-right: 1px solid color(dark-haze);
}
+.cohort-extra-low,
.cohort-low,
.cohort-medium-low,
.cohort-medium,
.cohort-medium-high,
.cohort-high,
.cohort-hot,
.cohort-extra-hot { color: color(white); }
-@each $name, $multiplier in (low: 3, medium-low: 2, medium: 1) {
- .cohort-#{$name} { background: lighten(color(primary), percentage((7.5 * $multiplier) / 100)); }
+@each $name, $multiplier in (extra-low: 3.5, low: 3, medium-low: 2, medium: 1) {
+ .cohort-#{$name} { background: lighten(color(primary), percentage((12.5 * $multiplier) / 100)); }
}
.cohort-medium-high {
background: color(primary);
}
@each $name, $multiplier in (high: 1, hot: 2, extra-hot: 3) {
- .cohort-#{$name} { background: darken(color(primary), percentage((7.5 * $multiplier) / 100)); }
+ .cohort-#{$name} { background: darken(color(primary), percentage((12.5 * $multiplier) / 100)); }
}