mod-base 1.0.53 → 1.0.54-beta.1
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +21 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -105,7 +105,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
// Most common selectors list
|
|
108
|
-
$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';
|
|
108
|
+
$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,.result__title,.result__subtitle,.result__call-text';
|
|
109
109
|
$background-selectors: '.form,.header,.guarantee,.information,.modal-content,.matched-steps,.loader,.information__header,.hero__background,.hero__content,.form-input,.form-input:focus,.expand-collapse__icon,.featured-block,table tr,.form-control,.accordion,.hiw-block,.reviews';
|
|
110
110
|
|
|
111
111
|
@media (prefers-color-scheme: dark){
|
|
@@ -799,6 +799,26 @@ $contact-us-blue-light: #8498E7;
|
|
|
799
799
|
}
|
|
800
800
|
}
|
|
801
801
|
|
|
802
|
+
.result {
|
|
803
|
+
&__call {
|
|
804
|
+
background-color: $color-grey-800;
|
|
805
|
+
|
|
806
|
+
a {
|
|
807
|
+
color: $text-color;
|
|
808
|
+
|
|
809
|
+
img {
|
|
810
|
+
filter: grayscale(1) invert(.9) brightness(1.5);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
&:active,
|
|
814
|
+
&:focus,
|
|
815
|
+
&:hover {
|
|
816
|
+
color: $color-white;
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
|
|
802
822
|
// Ketch Preference dashboard styles
|
|
803
823
|
#lanyard_root * {
|
|
804
824
|
background-color: $color-black !important;
|