mod-base 1.0.70-beta.1 → 1.0.70-beta.2
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.
package/package.json
CHANGED
|
@@ -94,7 +94,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
94
94
|
$tcpa-color: lighten($color-grey-500, 2%),
|
|
95
95
|
$value-props-background: null,
|
|
96
96
|
$progress-bar-background-color: null,
|
|
97
|
-
$progress-bar-fill-color: null
|
|
97
|
+
$progress-bar-fill-color: null,
|
|
98
|
+
$progress-bar-percentage-color: null
|
|
98
99
|
) {
|
|
99
100
|
// Theme global variables if required to use after including the mixin
|
|
100
101
|
$background-color: $background !global;
|
|
@@ -182,6 +183,10 @@ $contact-us-blue-light: #8498E7;
|
|
|
182
183
|
$progress-bar-fill-color: $base-color;
|
|
183
184
|
}
|
|
184
185
|
|
|
186
|
+
@if ($progress-bar-percentage-color == null) {
|
|
187
|
+
$progress-bar-percentage-color: $text-color;
|
|
188
|
+
}
|
|
189
|
+
|
|
185
190
|
// Most common selectors list
|
|
186
191
|
$content-selectors: '.hero__title,.hero__subtitle,input,.toggle-wrapper,.step__title,[class^="information__"],[class^="featured-block__"],[class^="partners__"],.form-group__label,[class^="abandonment__"],.modal-header--close,.modal-phone,.modal-body p,legend,[class^="loader__"],table tr,.tile__text,.select,.hiw-block__title,.hiw-card__title,.hiw-card__description,.banner__title,.banner__description,.accordion__title,.reviews__title,.accordion .expand-collapse__toggle,.accordion__content p,.accordion__content li,.result__title,.result__subtitle,.result__call-text';
|
|
187
192
|
$background-selectors: '.form,.header,.guarantee,.information,.modal-content,.matched-steps,.loader,.information__header,.hero__background,.hero__content,&.form-in-progress:not(.fixed-width-desktop) .hero__content,.form-input,.form-input:focus,.expand-collapse__icon,.featured-block,table tr,.form-control,.accordion,.hiw-block,.reviews';
|
|
@@ -394,6 +399,10 @@ $contact-us-blue-light: #8498E7;
|
|
|
394
399
|
&__fill {
|
|
395
400
|
background-color: $progress-bar-fill-color;
|
|
396
401
|
}
|
|
402
|
+
|
|
403
|
+
&__percentage {
|
|
404
|
+
color: $progress-bar-percentage-color;
|
|
405
|
+
}
|
|
397
406
|
}
|
|
398
407
|
|
|
399
408
|
.information,
|