@festo-ui/web-essentials 9.0.1 → 10.0.0-dev.826
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 +187 -48
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +14 -14
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +178 -39
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_breadcrumb.scss +74 -24
- package/dist/scss/_popover.scss +10 -12
- package/dist/scss/_search-input.scss +1 -0
- package/dist/scss/_select.scss +84 -4
- package/dist/scss/_table.scss +6 -6
- package/dist/scss/_text-input.scss +60 -0
- package/dist/scss/_variables.scss +1 -0
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +9 -18
- package/scss/_breadcrumb.scss +74 -24
- package/scss/_popover.scss +10 -12
- package/scss/_search-input.scss +1 -0
- package/scss/_select.scss +84 -4
- package/scss/_table.scss +6 -6
- package/scss/_text-input.scss +60 -0
- package/scss/_variables.scss +1 -0
|
@@ -2535,21 +2535,21 @@ table.fwe-table tr th.fwe-table-order {
|
|
|
2535
2535
|
table.fwe-table tr th.fwe-table-order::before {
|
|
2536
2536
|
content: "";
|
|
2537
2537
|
display: inline-block;
|
|
2538
|
-
width:
|
|
2539
|
-
height:
|
|
2538
|
+
width: 16px;
|
|
2539
|
+
height: 16px;
|
|
2540
2540
|
background-size: cover;
|
|
2541
2541
|
position: relative;
|
|
2542
2542
|
top: 2px;
|
|
2543
|
-
left:
|
|
2543
|
+
left: 8px;
|
|
2544
2544
|
}
|
|
2545
2545
|
table.fwe-table tr th.fwe-table-order::before {
|
|
2546
|
-
background-image: url("data:image/svg+xml;base64,
|
|
2546
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj48cGF0aCBkPSJNOCAxMC43MDdMMy42NDYgNi4zNTRMNC4zNTQgNS42NDZMOCA5LjI5M0wxMS42NDYgNS42NDZMMTIuMzU0IDYuMzU0TDggMTAuNzA3WiIgZmlsbD0iIzMzMzMzMyIvPjwvc3ZnPg==");
|
|
2547
2547
|
}
|
|
2548
2548
|
table.fwe-table tr th.fwe-table-order.fwe-table-order-ascending::before {
|
|
2549
|
-
background-image: url("data:image/svg+xml;base64,
|
|
2549
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTEuNjQ2IDkuMzUzOTdMOCA1LjcwNjk3TDQuMzU0IDkuMzUzOTdMMy42NDYgOC42NDU5N0w4IDQuMjkyOTdMMTIuMzU0IDguNjQ1OTdMMTEuNjQ2IDkuMzUzOTdaIiBmaWxsPSIjMDA5MWRjIi8+PC9zdmc+");
|
|
2550
2550
|
}
|
|
2551
2551
|
table.fwe-table tr th.fwe-table-order.fwe-table-order-descending::before {
|
|
2552
|
-
background-image: url("data:image/svg+xml;base64,
|
|
2552
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj48cGF0aCBkPSJNOCAxMC43MDdMMy42NDYgNi4zNTRMNC4zNTQgNS42NDZMOCA5LjI5M0wxMS42NDYgNS42NDZMMTIuMzU0IDYuMzU0TDggMTAuNzA3WiIgZmlsbD0iIzAwOTFkYyIvPjwvc3ZnPg==");
|
|
2553
2553
|
}
|
|
2554
2554
|
table.fwe-table tr th.fwe-active {
|
|
2555
2555
|
color: var(--fwe-hero);
|
|
@@ -3201,42 +3201,60 @@ header.fwe-fixed-header {
|
|
|
3201
3201
|
}
|
|
3202
3202
|
|
|
3203
3203
|
.fwe-breadcrumb {
|
|
3204
|
+
overflow: hidden;
|
|
3205
|
+
}
|
|
3206
|
+
.fwe-breadcrumb ol {
|
|
3207
|
+
overflow: hidden;
|
|
3204
3208
|
display: flex;
|
|
3205
|
-
flex-wrap:
|
|
3206
|
-
|
|
3209
|
+
flex-wrap: nowrap;
|
|
3210
|
+
white-space: nowrap;
|
|
3207
3211
|
align-items: center;
|
|
3212
|
+
list-style: none;
|
|
3213
|
+
margin: 0;
|
|
3214
|
+
padding: 0;
|
|
3208
3215
|
}
|
|
3209
|
-
.fwe-breadcrumb
|
|
3210
|
-
.fwe-breadcrumb a {
|
|
3216
|
+
.fwe-breadcrumb li {
|
|
3211
3217
|
display: flex;
|
|
3218
|
+
overflow: hidden;
|
|
3219
|
+
flex-shrink: 0;
|
|
3212
3220
|
align-items: center;
|
|
3213
3221
|
min-height: 24px;
|
|
3214
3222
|
color: var(--fwe-text);
|
|
3223
|
+
font-size: var(--fwe-font-size-md);
|
|
3224
|
+
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
3225
|
+
}
|
|
3226
|
+
.fwe-breadcrumb li:last-child {
|
|
3227
|
+
flex-shrink: 1;
|
|
3228
|
+
min-width: 36px;
|
|
3229
|
+
}
|
|
3230
|
+
.fwe-breadcrumb li:last-child a {
|
|
3231
|
+
overflow: hidden;
|
|
3232
|
+
text-overflow: ellipsis;
|
|
3233
|
+
}
|
|
3234
|
+
.fwe-breadcrumb a {
|
|
3235
|
+
display: block;
|
|
3236
|
+
align-items: center;
|
|
3237
|
+
color: var(--fwe-text);
|
|
3215
3238
|
text-decoration: none;
|
|
3216
3239
|
-webkit-user-select: none;
|
|
3217
3240
|
-moz-user-select: none;
|
|
3218
3241
|
user-select: none;
|
|
3219
|
-
font-size: var(--fwe-font-size-md);
|
|
3220
|
-
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
3221
3242
|
}
|
|
3222
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:focus,
|
|
3223
3243
|
.fwe-breadcrumb a:focus {
|
|
3224
3244
|
outline: none;
|
|
3225
3245
|
}
|
|
3226
|
-
.fwe-breadcrumb
|
|
3227
|
-
.fwe-breadcrumb a:not(:last-child) {
|
|
3228
|
-
cursor: pointer;
|
|
3229
|
-
}
|
|
3230
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:not(:last-child):hover,
|
|
3231
|
-
.fwe-breadcrumb a:not(:last-child):hover {
|
|
3246
|
+
.fwe-breadcrumb a:hover {
|
|
3232
3247
|
color: var(--fwe-hero);
|
|
3233
3248
|
}
|
|
3234
|
-
.fwe-breadcrumb
|
|
3235
|
-
.fwe-breadcrumb a:not(:last-child):active {
|
|
3249
|
+
.fwe-breadcrumb a:active {
|
|
3236
3250
|
color: var(--fwe-hero-active);
|
|
3237
3251
|
}
|
|
3238
|
-
.fwe-breadcrumb
|
|
3239
|
-
|
|
3252
|
+
.fwe-breadcrumb a[aria-current=page] {
|
|
3253
|
+
font-weight: bold;
|
|
3254
|
+
cursor: default;
|
|
3255
|
+
pointer-events: none;
|
|
3256
|
+
}
|
|
3257
|
+
.fwe-breadcrumb li:not(:last-child)::after {
|
|
3240
3258
|
content: "";
|
|
3241
3259
|
margin-left: 4px;
|
|
3242
3260
|
margin-right: 4px;
|
|
@@ -3244,11 +3262,19 @@ header.fwe-fixed-header {
|
|
|
3244
3262
|
width: 16px;
|
|
3245
3263
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
3246
3264
|
}
|
|
3247
|
-
.fwe-breadcrumb
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3265
|
+
.fwe-breadcrumb--mobile li {
|
|
3266
|
+
display: none;
|
|
3267
|
+
}
|
|
3268
|
+
.fwe-breadcrumb--mobile li:nth-last-child(-n+2) {
|
|
3269
|
+
display: flex;
|
|
3270
|
+
}
|
|
3271
|
+
.fwe-breadcrumb--mobile li:nth-last-child(2)::before {
|
|
3272
|
+
content: "";
|
|
3273
|
+
margin-left: 0px;
|
|
3274
|
+
margin-right: 4px;
|
|
3275
|
+
height: 16px;
|
|
3276
|
+
width: 16px;
|
|
3277
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
3252
3278
|
}
|
|
3253
3279
|
|
|
3254
3280
|
a {
|
|
@@ -3574,6 +3600,57 @@ label.fwe-input-text textarea ~ .fwe-input-text-invalid {
|
|
|
3574
3600
|
overflow: hidden;
|
|
3575
3601
|
text-overflow: ellipsis;
|
|
3576
3602
|
}
|
|
3603
|
+
label.fwe-input-text:has(input:user-invalid:not(:disabled)) .fwe-input-text-info, label.fwe-input-text:has(input:user-invalid:not(:disabled)) .fwe-input-text-invalid, label.fwe-input-text.fwe-input-text--invalid .fwe-input-text-info, label.fwe-input-text.fwe-input-text--invalid .fwe-input-text-invalid {
|
|
3604
|
+
display: none;
|
|
3605
|
+
}
|
|
3606
|
+
label.fwe-input-text:has(input:user-invalid:not(:disabled)) .fwe-input-text-invalid, label.fwe-input-text.fwe-input-text--invalid .fwe-input-text-invalid {
|
|
3607
|
+
display: block;
|
|
3608
|
+
}
|
|
3609
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=text],
|
|
3610
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=email],
|
|
3611
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=password],
|
|
3612
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=number],
|
|
3613
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=date],
|
|
3614
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=time],
|
|
3615
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon) input[type=datetime-local], label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=text],
|
|
3616
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=email],
|
|
3617
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=password],
|
|
3618
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=number],
|
|
3619
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=date],
|
|
3620
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=time],
|
|
3621
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon) input[type=datetime-local], label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=text],
|
|
3622
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=email],
|
|
3623
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=password],
|
|
3624
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=number],
|
|
3625
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=date],
|
|
3626
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=time],
|
|
3627
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon) input[type=datetime-local], label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=text],
|
|
3628
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=email],
|
|
3629
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=password],
|
|
3630
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=number],
|
|
3631
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=date],
|
|
3632
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=time],
|
|
3633
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon) input[type=datetime-local] {
|
|
3634
|
+
padding-right: 24px;
|
|
3635
|
+
}
|
|
3636
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon)::after, label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon)::after, label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon)::after, label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon)::after {
|
|
3637
|
+
content: "";
|
|
3638
|
+
position: absolute;
|
|
3639
|
+
bottom: 27px;
|
|
3640
|
+
right: 0px;
|
|
3641
|
+
width: 16px;
|
|
3642
|
+
height: 16px;
|
|
3643
|
+
background-repeat: no-repeat;
|
|
3644
|
+
background-position: center center;
|
|
3645
|
+
}
|
|
3646
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-valid:not(:disabled)):not(.fwe-input-text-icon)::after, label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--valid:not(.fwe-input-text-icon)::after {
|
|
3647
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'><path d='M4.207 9.621L0 5.414L1.414 4L4.207 6.793L11 0L12.414 1.414L4.207 9.621Z' fill='%230091DC'/></svg>");
|
|
3648
|
+
background-size: 13px 13px;
|
|
3649
|
+
}
|
|
3650
|
+
label.fwe-input-text.fwe-input-text--with-validation-icons:has(input:user-invalid:not(:disabled)):not(.fwe-input-text-icon)::after, label.fwe-input-text.fwe-input-text--with-validation-icons.fwe-input-text--invalid:not(.fwe-input-text-icon)::after {
|
|
3651
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M16.95 8.46405L15.536 7.05005L12 10.586L8.46405 7.05005L7.05005 8.46405L10.586 12L7.05005 15.536L8.46405 16.95L12 13.414L15.536 16.95L16.95 15.536L13.414 12L16.95 8.46405Z' fill='%23D50000'/></svg>");
|
|
3652
|
+
background-size: 24px 24px;
|
|
3653
|
+
}
|
|
3577
3654
|
label.fwe-input-text.fwe-input-text-icon .fwe-svg-icon,
|
|
3578
3655
|
label.fwe-input-text.fwe-input-text-icon i {
|
|
3579
3656
|
line-height: 1;
|
|
@@ -4566,7 +4643,12 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4566
4643
|
content: "";
|
|
4567
4644
|
height: 24px;
|
|
4568
4645
|
width: 24px;
|
|
4569
|
-
|
|
4646
|
+
-webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJ3aGl0ZSBiYWNrZ3JvdW5kIi8+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTUuNjM2IDkuMTcyIDEyIDE1LjUzNmw2LjM2NC02LjM2NC0uNzA3LS43MDhMMTIgMTQuMTIxIDYuMzQzIDguNDY0bC0uNzA3LjcwOHoiIGRhdGEtbmFtZT0iY29udGVudCIvPjwvc3ZnPg==") center/24px 24px no-repeat;
|
|
4647
|
+
mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJ3aGl0ZSBiYWNrZ3JvdW5kIi8+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTUuNjM2IDkuMTcyIDEyIDE1LjUzNmw2LjM2NC02LjM2NC0uNzA3LS43MDhMMTIgMTQuMTIxIDYuMzQzIDguNDY0bC0uNzA3LjcwOHoiIGRhdGEtbmFtZT0iY29udGVudCIvPjwvc3ZnPg==") center/24px 24px no-repeat;
|
|
4648
|
+
background-color: var(--fwe-text);
|
|
4649
|
+
}
|
|
4650
|
+
.fwe-select-wrapper:has(.fwe-select:disabled)::before {
|
|
4651
|
+
background-color: var(--fwe-text-disabled);
|
|
4570
4652
|
}
|
|
4571
4653
|
.fwe-select-wrapper .fwe-select-label {
|
|
4572
4654
|
height: 18px;
|
|
@@ -4577,11 +4659,15 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4577
4659
|
font-weight: var(--fwe-font-weight-bold);
|
|
4578
4660
|
}
|
|
4579
4661
|
.fwe-select-wrapper .fwe-select {
|
|
4662
|
+
text-align: left;
|
|
4663
|
+
overflow: hidden;
|
|
4664
|
+
white-space: nowrap;
|
|
4665
|
+
text-overflow: ellipsis;
|
|
4580
4666
|
cursor: pointer;
|
|
4581
4667
|
order: 2;
|
|
4582
4668
|
height: 33px;
|
|
4583
|
-
padding-
|
|
4584
|
-
padding
|
|
4669
|
+
padding-inline: unset;
|
|
4670
|
+
padding: 4px 24px 4px 0px;
|
|
4585
4671
|
width: 100%;
|
|
4586
4672
|
font-size: var(--fwe-font-size-base);
|
|
4587
4673
|
-webkit-appearance: none;
|
|
@@ -4593,14 +4679,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4593
4679
|
border: none;
|
|
4594
4680
|
border-bottom: 1px solid var(--fwe-control-border);
|
|
4595
4681
|
}
|
|
4596
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) {
|
|
4682
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled), .fwe-select-wrapper .fwe-select:focus:not(:disabled) {
|
|
4597
4683
|
color: var(--fwe-hero);
|
|
4598
4684
|
border-color: var(--fwe-hero);
|
|
4599
4685
|
}
|
|
4600
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option {
|
|
4686
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option, .fwe-select-wrapper .fwe-select:focus:not(:disabled) option {
|
|
4601
4687
|
color: var(--fwe-text);
|
|
4602
4688
|
}
|
|
4603
|
-
.fwe-select-wrapper .fwe-select:hover:user-invalid {
|
|
4689
|
+
.fwe-select-wrapper .fwe-select:hover.fwe-invalid, .fwe-select-wrapper .fwe-select:hover:user-invalid, .fwe-select-wrapper .fwe-select:focus.fwe-invalid, .fwe-select-wrapper .fwe-select:focus:user-invalid {
|
|
4604
4690
|
border-color: var(--fwe-red);
|
|
4605
4691
|
}
|
|
4606
4692
|
.fwe-select-wrapper .fwe-select:disabled {
|
|
@@ -4613,14 +4699,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4613
4699
|
.fwe-select-wrapper .fwe-select::-ms-expand {
|
|
4614
4700
|
display: none;
|
|
4615
4701
|
}
|
|
4616
|
-
.fwe-select-wrapper .fwe-select:user-invalid {
|
|
4702
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid, .fwe-select-wrapper .fwe-select:user-invalid {
|
|
4617
4703
|
box-shadow: none;
|
|
4618
4704
|
border-color: var(--fwe-red);
|
|
4619
4705
|
}
|
|
4620
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
4706
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-invalid, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
4621
4707
|
display: block;
|
|
4622
4708
|
}
|
|
4623
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
4709
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-description, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
4624
4710
|
display: none;
|
|
4625
4711
|
}
|
|
4626
4712
|
.fwe-select-wrapper .fwe-select-invalid {
|
|
@@ -4628,6 +4714,54 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4628
4714
|
color: var(--fwe-red);
|
|
4629
4715
|
}
|
|
4630
4716
|
|
|
4717
|
+
.fwe-options-container {
|
|
4718
|
+
max-width: 100%;
|
|
4719
|
+
background-color: var(--fwe-white);
|
|
4720
|
+
padding: 16px 0px;
|
|
4721
|
+
margin: 0;
|
|
4722
|
+
box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.2);
|
|
4723
|
+
list-style: none;
|
|
4724
|
+
}
|
|
4725
|
+
.fwe-options-container:focus {
|
|
4726
|
+
outline: none;
|
|
4727
|
+
}
|
|
4728
|
+
.fwe-options-container--multi-select {
|
|
4729
|
+
display: flex;
|
|
4730
|
+
flex-direction: column;
|
|
4731
|
+
gap: 12px;
|
|
4732
|
+
padding: 20px 12px;
|
|
4733
|
+
}
|
|
4734
|
+
|
|
4735
|
+
.fwe-combobox-option {
|
|
4736
|
+
padding: 8px 16px;
|
|
4737
|
+
cursor: pointer;
|
|
4738
|
+
position: relative;
|
|
4739
|
+
}
|
|
4740
|
+
.fwe-combobox-option:hover, .fwe-combobox-option:focus, .fwe-combobox-option.fwe-focus {
|
|
4741
|
+
background-color: var(--fwe-background);
|
|
4742
|
+
color: var(--fwe-hero);
|
|
4743
|
+
}
|
|
4744
|
+
.fwe-combobox-option.fwe-selected {
|
|
4745
|
+
color: var(--fwe-hero);
|
|
4746
|
+
}
|
|
4747
|
+
.fwe-combobox-option.fwe-selected::before {
|
|
4748
|
+
content: "";
|
|
4749
|
+
width: 4px;
|
|
4750
|
+
height: 100%;
|
|
4751
|
+
background-color: var(--fwe-hero);
|
|
4752
|
+
position: absolute;
|
|
4753
|
+
left: 0;
|
|
4754
|
+
top: 0;
|
|
4755
|
+
}
|
|
4756
|
+
.fwe-combobox-option.fwe-disabled {
|
|
4757
|
+
color: var(--fwe-text-disabled);
|
|
4758
|
+
cursor: default;
|
|
4759
|
+
}
|
|
4760
|
+
.fwe-combobox-option.fwe-disabled:hover {
|
|
4761
|
+
background-color: transparent;
|
|
4762
|
+
color: var(--fwe-text-disabled);
|
|
4763
|
+
}
|
|
4764
|
+
|
|
4631
4765
|
.fwe-badge {
|
|
4632
4766
|
display: inline-block;
|
|
4633
4767
|
border-radius: 2px;
|
|
@@ -4670,6 +4804,10 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4670
4804
|
background-color: var(--fwe-caerul) !important;
|
|
4671
4805
|
}
|
|
4672
4806
|
|
|
4807
|
+
.fwe-badge-dark {
|
|
4808
|
+
background-color: var(--fwe-text) !important;
|
|
4809
|
+
}
|
|
4810
|
+
|
|
4673
4811
|
.fwe-badge-green {
|
|
4674
4812
|
background-color: var(--fwe-green) !important;
|
|
4675
4813
|
}
|
|
@@ -5571,7 +5709,7 @@ fieldset.fwe-progress-container label {
|
|
|
5571
5709
|
padding: 16px;
|
|
5572
5710
|
}
|
|
5573
5711
|
|
|
5574
|
-
.fwe-popover-menu-trigger
|
|
5712
|
+
.fwe-popover-menu-trigger {
|
|
5575
5713
|
background: none;
|
|
5576
5714
|
border: none;
|
|
5577
5715
|
padding: 0;
|
|
@@ -5580,7 +5718,7 @@ fieldset.fwe-progress-container label {
|
|
|
5580
5718
|
display: block;
|
|
5581
5719
|
cursor: pointer;
|
|
5582
5720
|
}
|
|
5583
|
-
.fwe-popover-menu-trigger
|
|
5721
|
+
.fwe-popover-menu-trigger:hover {
|
|
5584
5722
|
color: var(--fwe-hero);
|
|
5585
5723
|
}
|
|
5586
5724
|
|
|
@@ -6188,6 +6326,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
6188
6326
|
|
|
6189
6327
|
.fwe-search-suggestions {
|
|
6190
6328
|
position: absolute;
|
|
6329
|
+
z-index: var(--fwe-z-index-dropdown);
|
|
6191
6330
|
top: 38px;
|
|
6192
6331
|
left: 0px;
|
|
6193
6332
|
right: 0px;
|