indicator-ui 0.0.204 → 0.0.206
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/dist/index.css +21 -8
- package/dist/index.css.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/scss/ui/Buttons/styles/mixins/button.scss +3 -3
- package/dist/scss/ui/Buttons/styles/mixins/properties/index.scss +1 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-color.scss +1 -11
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-link-color.scss +26 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -445,21 +445,15 @@
|
|
|
445
445
|
font-weight: 400;
|
|
446
446
|
color: var(--blue-dark-500);
|
|
447
447
|
}
|
|
448
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover .Buttons-module__text___htxqX {
|
|
448
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-module__text___htxqX {
|
|
449
449
|
color: var(--blue-dark-700);
|
|
450
450
|
}
|
|
451
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover .Buttons-module__icon___U2AOU svg * {
|
|
451
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-module__icon___U2AOU svg * {
|
|
452
452
|
stroke: var(--blue-dark-700);
|
|
453
453
|
}
|
|
454
454
|
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN.Buttons-module__disabled___INiFx {
|
|
455
455
|
opacity: 0.5;
|
|
456
456
|
}
|
|
457
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:disabled:hover .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN.Buttons-module__disabled___INiFx:hover .Buttons-module__text___htxqX {
|
|
458
|
-
color: var(--blue-dark-500);
|
|
459
|
-
}
|
|
460
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:disabled:hover .Buttons-module__icon___U2AOU svg *, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN.Buttons-module__disabled___INiFx:hover .Buttons-module__icon___U2AOU svg * {
|
|
461
|
-
stroke: var(--blue-dark-500);
|
|
462
|
-
}
|
|
463
457
|
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t {
|
|
464
458
|
padding: 0 !important;
|
|
465
459
|
gap: 4px;
|
|
@@ -618,6 +612,25 @@
|
|
|
618
612
|
background-color: var(--base-white);
|
|
619
613
|
border: 1px solid var(--error-200f);
|
|
620
614
|
}
|
|
615
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__icon___U2AOU svg * {
|
|
616
|
+
stroke: var(--error-500);
|
|
617
|
+
}
|
|
618
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
|
|
619
|
+
padding: 0 !important;
|
|
620
|
+
}
|
|
621
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
|
|
622
|
+
font-weight: 400;
|
|
623
|
+
color: var(--error-500);
|
|
624
|
+
}
|
|
625
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-module__text___htxqX {
|
|
626
|
+
color: var(--error-700);
|
|
627
|
+
}
|
|
628
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-module__icon___U2AOU svg * {
|
|
629
|
+
stroke: var(--error-700);
|
|
630
|
+
}
|
|
631
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:disabled, .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN.Buttons-module__disabled___INiFx {
|
|
632
|
+
opacity: 0.5;
|
|
633
|
+
}
|
|
621
634
|
.Buttons-module__button___I3yLe:disabled, .Buttons-module__button___I3yLe.Buttons-module__disabled___INiFx {
|
|
622
635
|
cursor: default;
|
|
623
636
|
}
|