@festo-ui/web-essentials 9.0.1-dev.767 → 9.0.1-dev.775
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 +118 -40
- 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 +109 -31
- 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/_breadcrumb.scss +73 -23
- package/dist/scss/_select.scss +74 -3
- 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/_breadcrumb.scss +73 -23
- package/scss/_select.scss +74 -3
|
@@ -3201,54 +3201,80 @@ 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
|
-
margin-left:
|
|
3259
|
+
margin-left: 4px;
|
|
3242
3260
|
margin-right: 4px;
|
|
3243
3261
|
height: 16px;
|
|
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 {
|
|
@@ -4582,11 +4608,15 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4582
4608
|
font-weight: var(--fwe-font-weight-bold);
|
|
4583
4609
|
}
|
|
4584
4610
|
.fwe-select-wrapper .fwe-select {
|
|
4611
|
+
text-align: left;
|
|
4612
|
+
overflow: hidden;
|
|
4613
|
+
white-space: nowrap;
|
|
4614
|
+
text-overflow: ellipsis;
|
|
4585
4615
|
cursor: pointer;
|
|
4586
4616
|
order: 2;
|
|
4587
4617
|
height: 33px;
|
|
4588
|
-
padding-
|
|
4589
|
-
padding
|
|
4618
|
+
padding-inline: unset;
|
|
4619
|
+
padding: 4px 24px 4px 0px;
|
|
4590
4620
|
width: 100%;
|
|
4591
4621
|
font-size: var(--fwe-font-size-base);
|
|
4592
4622
|
-webkit-appearance: none;
|
|
@@ -4598,14 +4628,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4598
4628
|
border: none;
|
|
4599
4629
|
border-bottom: 1px solid var(--fwe-control-border);
|
|
4600
4630
|
}
|
|
4601
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) {
|
|
4631
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled), .fwe-select-wrapper .fwe-select:focus:not(:disabled) {
|
|
4602
4632
|
color: var(--fwe-hero);
|
|
4603
4633
|
border-color: var(--fwe-hero);
|
|
4604
4634
|
}
|
|
4605
|
-
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option {
|
|
4635
|
+
.fwe-select-wrapper .fwe-select:hover:not(:disabled) option, .fwe-select-wrapper .fwe-select:focus:not(:disabled) option {
|
|
4606
4636
|
color: var(--fwe-text);
|
|
4607
4637
|
}
|
|
4608
|
-
.fwe-select-wrapper .fwe-select:hover:user-invalid {
|
|
4638
|
+
.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 {
|
|
4609
4639
|
border-color: var(--fwe-red);
|
|
4610
4640
|
}
|
|
4611
4641
|
.fwe-select-wrapper .fwe-select:disabled {
|
|
@@ -4618,14 +4648,14 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4618
4648
|
.fwe-select-wrapper .fwe-select::-ms-expand {
|
|
4619
4649
|
display: none;
|
|
4620
4650
|
}
|
|
4621
|
-
.fwe-select-wrapper .fwe-select:user-invalid {
|
|
4651
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid, .fwe-select-wrapper .fwe-select:user-invalid {
|
|
4622
4652
|
box-shadow: none;
|
|
4623
4653
|
border-color: var(--fwe-red);
|
|
4624
4654
|
}
|
|
4625
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
4655
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-invalid, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-invalid {
|
|
4626
4656
|
display: block;
|
|
4627
4657
|
}
|
|
4628
|
-
.fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
4658
|
+
.fwe-select-wrapper .fwe-select.fwe-invalid ~ .fwe-select-description, .fwe-select-wrapper .fwe-select:user-invalid ~ .fwe-select-description {
|
|
4629
4659
|
display: none;
|
|
4630
4660
|
}
|
|
4631
4661
|
.fwe-select-wrapper .fwe-select-invalid {
|
|
@@ -4633,6 +4663,54 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
4633
4663
|
color: var(--fwe-red);
|
|
4634
4664
|
}
|
|
4635
4665
|
|
|
4666
|
+
.fwe-options-container {
|
|
4667
|
+
max-width: 100%;
|
|
4668
|
+
background-color: var(--fwe-white);
|
|
4669
|
+
padding: 16px 0px;
|
|
4670
|
+
margin: 0;
|
|
4671
|
+
box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.2);
|
|
4672
|
+
list-style: none;
|
|
4673
|
+
}
|
|
4674
|
+
.fwe-options-container:focus {
|
|
4675
|
+
outline: none;
|
|
4676
|
+
}
|
|
4677
|
+
.fwe-options-container--multi-select {
|
|
4678
|
+
display: flex;
|
|
4679
|
+
flex-direction: column;
|
|
4680
|
+
gap: 8px;
|
|
4681
|
+
padding: 24px 12px;
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4684
|
+
.fwe-combobox-option {
|
|
4685
|
+
padding: 8px 16px;
|
|
4686
|
+
cursor: pointer;
|
|
4687
|
+
position: relative;
|
|
4688
|
+
}
|
|
4689
|
+
.fwe-combobox-option:hover, .fwe-combobox-option:focus, .fwe-combobox-option.fwe-focus {
|
|
4690
|
+
background-color: var(--fwe-background);
|
|
4691
|
+
color: var(--fwe-hero);
|
|
4692
|
+
}
|
|
4693
|
+
.fwe-combobox-option:active, .fwe-combobox-option.fwe-selected {
|
|
4694
|
+
color: var(--fwe-hero);
|
|
4695
|
+
}
|
|
4696
|
+
.fwe-combobox-option:active::before, .fwe-combobox-option.fwe-selected::before {
|
|
4697
|
+
content: "";
|
|
4698
|
+
width: 4px;
|
|
4699
|
+
height: 100%;
|
|
4700
|
+
background-color: var(--fwe-hero);
|
|
4701
|
+
position: absolute;
|
|
4702
|
+
left: 0;
|
|
4703
|
+
top: 0;
|
|
4704
|
+
}
|
|
4705
|
+
.fwe-combobox-option.fwe-disabled {
|
|
4706
|
+
color: var(--fwe-text-disabled);
|
|
4707
|
+
cursor: default;
|
|
4708
|
+
}
|
|
4709
|
+
.fwe-combobox-option.fwe-disabled:hover {
|
|
4710
|
+
background-color: transparent;
|
|
4711
|
+
color: var(--fwe-text-disabled);
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4636
4714
|
.fwe-badge {
|
|
4637
4715
|
display: inline-block;
|
|
4638
4716
|
border-radius: 2px;
|