@festo-ui/web-essentials 11.0.0-dev.962 → 11.0.0-dev.964
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 +33 -35
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +11 -11
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +24 -26
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css +2 -2
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.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/_badge.scss +16 -23
- package/dist/scss/_button.scss +1 -0
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/organisms/_header-slider.scss +2 -2
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/llm-doc/components.md +8 -8
- package/llm-doc/organisms.md +1 -1
- package/package.json +1 -1
- package/scss/_badge.scss +16 -23
- package/scss/_button.scss +1 -0
- package/scss/organisms/_header-slider.scss +2 -2
|
@@ -4227,21 +4227,26 @@ button.fwe-btn.fwe-disabled {
|
|
|
4227
4227
|
background: var(--fwe-control-disabled);
|
|
4228
4228
|
color: var(--fwe-text-disabled);
|
|
4229
4229
|
}
|
|
4230
|
-
a.fwe-btn.fwe-btn-hero,
|
|
4230
|
+
a.fwe-btn.fwe-btn-primary, a.fwe-btn.fwe-btn-hero,
|
|
4231
|
+
button.fwe-btn.fwe-btn-primary,
|
|
4231
4232
|
button.fwe-btn.fwe-btn-hero {
|
|
4232
4233
|
color: var(--fwe-white);
|
|
4233
4234
|
background: var(--fwe-hero);
|
|
4234
4235
|
}
|
|
4235
|
-
a.fwe-btn.fwe-btn-hero:hover,
|
|
4236
|
+
a.fwe-btn.fwe-btn-primary:hover, a.fwe-btn.fwe-btn-hero:hover,
|
|
4237
|
+
button.fwe-btn.fwe-btn-primary:hover,
|
|
4236
4238
|
button.fwe-btn.fwe-btn-hero:hover {
|
|
4237
4239
|
color: var(--fwe-white);
|
|
4238
4240
|
background: var(--fwe-hero-hover);
|
|
4239
4241
|
}
|
|
4240
|
-
a.fwe-btn.fwe-btn-hero:active,
|
|
4242
|
+
a.fwe-btn.fwe-btn-primary:active, a.fwe-btn.fwe-btn-hero:active,
|
|
4243
|
+
button.fwe-btn.fwe-btn-primary:active,
|
|
4241
4244
|
button.fwe-btn.fwe-btn-hero:active {
|
|
4242
4245
|
background: var(--fwe-hero-active);
|
|
4243
4246
|
}
|
|
4244
|
-
a.fwe-btn.fwe-btn-hero:disabled, a.fwe-btn.fwe-btn-hero.fwe-disabled,
|
|
4247
|
+
a.fwe-btn.fwe-btn-primary:disabled, a.fwe-btn.fwe-btn-primary.fwe-disabled, a.fwe-btn.fwe-btn-hero:disabled, a.fwe-btn.fwe-btn-hero.fwe-disabled,
|
|
4248
|
+
button.fwe-btn.fwe-btn-primary:disabled,
|
|
4249
|
+
button.fwe-btn.fwe-btn-primary.fwe-disabled,
|
|
4245
4250
|
button.fwe-btn.fwe-btn-hero:disabled,
|
|
4246
4251
|
button.fwe-btn.fwe-btn-hero.fwe-disabled {
|
|
4247
4252
|
background: var(--fwe-control-disabled);
|
|
@@ -4787,40 +4792,33 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4787
4792
|
|
|
4788
4793
|
.fwe-badge {
|
|
4789
4794
|
display: inline-block;
|
|
4790
|
-
border-radius: 2px;
|
|
4791
|
-
font-size: var(--fwe-font-size-md);
|
|
4792
|
-
padding-left: 6px;
|
|
4793
|
-
padding-right: 6px;
|
|
4794
4795
|
color: var(--fwe-white);
|
|
4795
|
-
max-height: 19px;
|
|
4796
|
-
height: 19px;
|
|
4797
|
-
line-height: 17px;
|
|
4798
4796
|
background-color: var(--fwe-hero);
|
|
4797
|
+
border-radius: 2px;
|
|
4798
|
+
max-height: 18px;
|
|
4799
|
+
height: 18px;
|
|
4800
|
+
line-height: 18px;
|
|
4801
|
+
padding: 0 4px;
|
|
4799
4802
|
font-weight: var(--fwe-font-weight-bold);
|
|
4803
|
+
font-size: var(--fwe-font-size-md);
|
|
4800
4804
|
}
|
|
4801
4805
|
.fwe-badge.fwe-badge-sm {
|
|
4802
4806
|
font-size: var(--fwe-font-size-small);
|
|
4803
|
-
max-height:
|
|
4804
|
-
height:
|
|
4805
|
-
line-height:
|
|
4807
|
+
max-height: 18px;
|
|
4808
|
+
height: 18px;
|
|
4809
|
+
line-height: 18px;
|
|
4806
4810
|
}
|
|
4807
|
-
.fwe-badge.fwe-badge-md {
|
|
4811
|
+
.fwe-badge.fwe-badge-md, .fwe-badge.fwe-badge-lg {
|
|
4808
4812
|
font-size: var(--fwe-font-size-base);
|
|
4809
4813
|
max-height: 22px;
|
|
4810
4814
|
height: 22px;
|
|
4811
|
-
line-height:
|
|
4812
|
-
}
|
|
4813
|
-
.fwe-badge.fwe-badge-lg {
|
|
4814
|
-
font-size: var(--fwe-font-size-xl);
|
|
4815
|
-
max-height: 32px;
|
|
4816
|
-
height: 32px;
|
|
4817
|
-
line-height: 30px;
|
|
4815
|
+
line-height: 22px;
|
|
4818
4816
|
}
|
|
4819
4817
|
.fwe-badge.fwe-badge-xl {
|
|
4820
|
-
font-size: var(--fwe-font-size-
|
|
4821
|
-
max-height:
|
|
4822
|
-
height:
|
|
4823
|
-
line-height:
|
|
4818
|
+
font-size: var(--fwe-font-size-xl);
|
|
4819
|
+
max-height: 34px;
|
|
4820
|
+
height: 34px;
|
|
4821
|
+
line-height: 34px;
|
|
4824
4822
|
}
|
|
4825
4823
|
|
|
4826
4824
|
.fwe-badge-caerul {
|