@energycap/components 0.37.7-ECAP-18600-ech-theme-updates.20230912-2220 → 0.37.7-ECAP-18600-ech-theme-updates.20230913-1005
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/energycap-components.min.css +3 -3
- package/esm2020/lib/controls/button/button.component.mjs +2 -2
- package/esm2020/lib/controls/dropdown/dropdown.component.mjs +2 -2
- package/esm2020/lib/controls/link-button/link-button.component.mjs +2 -2
- package/esm2020/lib/controls/tabs/tabs.component.mjs +2 -2
- package/fesm2015/energycap-components.mjs +8 -8
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +8 -8
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_base.scss +2 -2
- package/src/styles/_global-variables.scss +1 -0
- package/src/styles/mixins/_tabs-base.scss +0 -2
- package/src/styles/utilities/_text.scss +2 -2
package/package.json
CHANGED
package/src/styles/_base.scss
CHANGED
@@ -121,6 +121,7 @@
|
|
121
121
|
|
122
122
|
--ec-color-interactive: var(--ec-color-cobalt-6);
|
123
123
|
--ec-color-interactive-light: var(--ec-color-blue-1);
|
124
|
+
--ec-color-link: var(--ec-color-interactive);
|
124
125
|
|
125
126
|
--ec-color-info: var(--ec-color-cobalt-6);
|
126
127
|
--ec-color-success: var(--ec-color-green-6);
|
@@ -77,7 +77,7 @@
|
|
77
77
|
}
|
78
78
|
|
79
79
|
.text-link {
|
80
|
-
color: var(--ec-color-
|
80
|
+
color: var(--ec-color-link) !important;
|
81
81
|
cursor: pointer;
|
82
82
|
|
83
83
|
&:hover {
|
@@ -145,7 +145,7 @@
|
|
145
145
|
|
146
146
|
// @deprecated, use .text-link instead.
|
147
147
|
.font-color-link {
|
148
|
-
color: var(--ec-color-
|
148
|
+
color: var(--ec-color-link) !important;
|
149
149
|
}
|
150
150
|
|
151
151
|
.font-color-error {
|