@festo-ui/web-essentials 8.1.0-dev.567 → 8.1.0-dev.568
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/css/festo-web-essentials.css +31 -15
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +10 -10
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +22 -6
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_button.scss +0 -1
- package/dist/scss/_text-link.scss +25 -4
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_button.scss +0 -1
- package/scss/_text-link.scss +25 -4
|
@@ -3248,8 +3248,7 @@ header.fwe-fixed-header {
|
|
|
3248
3248
|
|
|
3249
3249
|
a {
|
|
3250
3250
|
color: var(--fwe-hero);
|
|
3251
|
-
text-decoration:
|
|
3252
|
-
text-decoration-thickness: auto;
|
|
3251
|
+
text-decoration: none;
|
|
3253
3252
|
}
|
|
3254
3253
|
a i.fwe-icon {
|
|
3255
3254
|
vertical-align: text-top;
|
|
@@ -3257,15 +3256,33 @@ a i.fwe-icon {
|
|
|
3257
3256
|
a.fwe-dark {
|
|
3258
3257
|
color: var(--fwe-text);
|
|
3259
3258
|
}
|
|
3260
|
-
a.fwe-active {
|
|
3261
|
-
color: var(--fwe-hero);
|
|
3262
|
-
}
|
|
3263
3259
|
a.fwe-disabled {
|
|
3264
3260
|
pointer-events: none;
|
|
3265
3261
|
color: var(--fwe-text-light);
|
|
3266
3262
|
cursor: default;
|
|
3267
3263
|
}
|
|
3268
3264
|
a:hover:not(.fwe-disabled) {
|
|
3265
|
+
color: var(--fwe-hero-hover);
|
|
3266
|
+
text-decoration: none;
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
.fwe-text-link {
|
|
3270
|
+
color: var(--fwe-hero);
|
|
3271
|
+
text-decoration: underline;
|
|
3272
|
+
text-decoration-thickness: auto;
|
|
3273
|
+
}
|
|
3274
|
+
.fwe-text-link i.fwe-icon {
|
|
3275
|
+
vertical-align: text-top;
|
|
3276
|
+
}
|
|
3277
|
+
.fwe-text-link.fwe-dark {
|
|
3278
|
+
color: var(--fwe-text);
|
|
3279
|
+
}
|
|
3280
|
+
.fwe-text-link.fwe-disabled {
|
|
3281
|
+
pointer-events: none;
|
|
3282
|
+
color: var(--fwe-text-light);
|
|
3283
|
+
cursor: default;
|
|
3284
|
+
}
|
|
3285
|
+
.fwe-text-link:hover:not(.fwe-disabled) {
|
|
3269
3286
|
color: var(--fwe-hero-hover);
|
|
3270
3287
|
text-decoration: underline;
|
|
3271
3288
|
text-decoration-thickness: auto;
|
|
@@ -4145,7 +4162,6 @@ button.fwe-btn.fwe-btn-block {
|
|
|
4145
4162
|
}
|
|
4146
4163
|
a.fwe-btn.fwe-btn-link,
|
|
4147
4164
|
button.fwe-btn.fwe-btn-link {
|
|
4148
|
-
text-decoration: none;
|
|
4149
4165
|
background: none;
|
|
4150
4166
|
color: var(--fwe-hero);
|
|
4151
4167
|
padding: 0;
|