@festo-ui/web-essentials 11.0.0-dev.973 → 11.0.0-dev.975
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 +23 -13
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +13 -13
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +14 -4
- 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/_chips.scss +1 -1
- package/dist/scss/_list.scss +2 -2
- package/dist/scss/_popover.scss +13 -0
- package/dist/scss/_root.scss +1 -1
- 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/_chips.scss +1 -1
- package/scss/_list.scss +2 -2
- package/scss/_popover.scss +13 -0
- package/scss/_root.scss +1 -1
|
@@ -438,7 +438,7 @@ h6,
|
|
|
438
438
|
--fwe-gray-400: #b6bec6;
|
|
439
439
|
--fwe-text: #333333;
|
|
440
440
|
--fwe-text-light: #82868b;
|
|
441
|
-
--fwe-text-disabled: #
|
|
441
|
+
--fwe-text-disabled: #a9b0b7;
|
|
442
442
|
--fwe-hero: #0091dc;
|
|
443
443
|
--fwe-hero-hover: #0588cb;
|
|
444
444
|
--fwe-hero-active: #0a7eba;
|
|
@@ -2702,7 +2702,7 @@ ul.fwe-list-group {
|
|
|
2702
2702
|
color: var(--fwe-text);
|
|
2703
2703
|
}
|
|
2704
2704
|
.fwe-list-group .fwe-list-group-item.fwe-disabled {
|
|
2705
|
-
color: var(--fwe-
|
|
2705
|
+
color: var(--fwe-text-disabled);
|
|
2706
2706
|
}
|
|
2707
2707
|
.fwe-list-group .fwe-list-group-item.fwe-disabled::before {
|
|
2708
2708
|
background-color: var(--fwe-control-hover);
|
|
@@ -2775,7 +2775,7 @@ ul.fwe-list-group {
|
|
|
2775
2775
|
transform: scaleY(4);
|
|
2776
2776
|
}
|
|
2777
2777
|
.fwe-list-group.fwe-list-group-horizontal .fwe-list-group-item.fwe-disabled {
|
|
2778
|
-
color: var(--fwe-
|
|
2778
|
+
color: var(--fwe-text-disabled);
|
|
2779
2779
|
}
|
|
2780
2780
|
.fwe-list-group.fwe-list-group-horizontal .fwe-list-group-item.fwe-disabled::before {
|
|
2781
2781
|
background-color: var(--fwe-control-hover);
|
|
@@ -3814,7 +3814,7 @@ label.fwe-input-text.fwe-input-text-icon textarea {
|
|
|
3814
3814
|
cursor: default;
|
|
3815
3815
|
background: var(--fwe-control-disabled);
|
|
3816
3816
|
border: 1px solid var(--fwe-control-disabled);
|
|
3817
|
-
color: var(--fwe-
|
|
3817
|
+
color: var(--fwe-text-disabled);
|
|
3818
3818
|
}
|
|
3819
3819
|
.fwe-chip.fwe-disabled.fwe-filter.fwe-selected {
|
|
3820
3820
|
cursor: default;
|
|
@@ -5727,6 +5727,16 @@ fieldset.fwe-progress-container label {
|
|
|
5727
5727
|
.fwe-popover--menu button:active {
|
|
5728
5728
|
background-color: rgba(51, 51, 51, 0.2);
|
|
5729
5729
|
}
|
|
5730
|
+
.fwe-popover--menu button:disabled {
|
|
5731
|
+
color: var(--fwe-text-disabled);
|
|
5732
|
+
cursor: default;
|
|
5733
|
+
}
|
|
5734
|
+
.fwe-popover--menu button:disabled:hover {
|
|
5735
|
+
color: var(--fwe-text-disabled);
|
|
5736
|
+
}
|
|
5737
|
+
.fwe-popover--menu button:disabled:active {
|
|
5738
|
+
background-color: transparent;
|
|
5739
|
+
}
|
|
5730
5740
|
.fwe-popover--content {
|
|
5731
5741
|
width: auto;
|
|
5732
5742
|
min-width: -moz-max-content;
|