@festo-ui/web-essentials 9.0.1-dev.766 → 9.0.1-dev.772
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 +57 -31
- 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 +48 -22
- 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 +74 -24
- 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 +74 -24
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
2
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -927,7 +927,7 @@ template {
|
|
|
927
927
|
}
|
|
928
928
|
|
|
929
929
|
/*!
|
|
930
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
930
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
931
931
|
* Copyright 2022 Festo SE & Co. KG
|
|
932
932
|
* Licensed under Apache-2.0
|
|
933
933
|
*/
|
|
@@ -12388,7 +12388,7 @@ header.fwe-fixed-header {
|
|
|
12388
12388
|
}
|
|
12389
12389
|
|
|
12390
12390
|
/*!
|
|
12391
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
12391
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
12392
12392
|
* Copyright 2022 Festo SE & Co. KG
|
|
12393
12393
|
* Licensed under Apache-2.0
|
|
12394
12394
|
*/
|
|
@@ -12532,42 +12532,60 @@ header.fwe-fixed-header {
|
|
|
12532
12532
|
}
|
|
12533
12533
|
|
|
12534
12534
|
.fwe-breadcrumb {
|
|
12535
|
+
overflow: hidden;
|
|
12536
|
+
}
|
|
12537
|
+
.fwe-breadcrumb ol {
|
|
12538
|
+
overflow: hidden;
|
|
12535
12539
|
display: flex;
|
|
12536
|
-
flex-wrap:
|
|
12537
|
-
|
|
12540
|
+
flex-wrap: nowrap;
|
|
12541
|
+
white-space: nowrap;
|
|
12538
12542
|
align-items: center;
|
|
12543
|
+
list-style: none;
|
|
12544
|
+
margin: 0;
|
|
12545
|
+
padding: 0;
|
|
12539
12546
|
}
|
|
12540
|
-
.fwe-breadcrumb
|
|
12541
|
-
.fwe-breadcrumb a {
|
|
12547
|
+
.fwe-breadcrumb li {
|
|
12542
12548
|
display: flex;
|
|
12549
|
+
overflow: hidden;
|
|
12550
|
+
flex-shrink: 0;
|
|
12543
12551
|
align-items: center;
|
|
12544
12552
|
min-height: 24px;
|
|
12545
12553
|
color: var(--fwe-text);
|
|
12554
|
+
font-size: var(--fwe-font-size-md);
|
|
12555
|
+
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
12556
|
+
}
|
|
12557
|
+
.fwe-breadcrumb li:last-child {
|
|
12558
|
+
flex-shrink: 1;
|
|
12559
|
+
min-width: 36px;
|
|
12560
|
+
}
|
|
12561
|
+
.fwe-breadcrumb li:last-child a {
|
|
12562
|
+
overflow: hidden;
|
|
12563
|
+
text-overflow: ellipsis;
|
|
12564
|
+
}
|
|
12565
|
+
.fwe-breadcrumb a {
|
|
12566
|
+
display: block;
|
|
12567
|
+
align-items: center;
|
|
12568
|
+
color: var(--fwe-text);
|
|
12546
12569
|
text-decoration: none;
|
|
12547
12570
|
-webkit-user-select: none;
|
|
12548
12571
|
-moz-user-select: none;
|
|
12549
12572
|
user-select: none;
|
|
12550
|
-
font-size: var(--fwe-font-size-md);
|
|
12551
|
-
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
12552
12573
|
}
|
|
12553
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:focus,
|
|
12554
12574
|
.fwe-breadcrumb a:focus {
|
|
12555
12575
|
outline: none;
|
|
12556
12576
|
}
|
|
12557
|
-
.fwe-breadcrumb
|
|
12558
|
-
.fwe-breadcrumb a:not(:last-child) {
|
|
12559
|
-
cursor: pointer;
|
|
12560
|
-
}
|
|
12561
|
-
.fwe-breadcrumb .fwe-breadcrumb-item:not(:last-child):hover,
|
|
12562
|
-
.fwe-breadcrumb a:not(:last-child):hover {
|
|
12577
|
+
.fwe-breadcrumb a:hover {
|
|
12563
12578
|
color: var(--fwe-hero);
|
|
12564
12579
|
}
|
|
12565
|
-
.fwe-breadcrumb
|
|
12566
|
-
.fwe-breadcrumb a:not(:last-child):active {
|
|
12580
|
+
.fwe-breadcrumb a:active {
|
|
12567
12581
|
color: var(--fwe-hero-active);
|
|
12568
12582
|
}
|
|
12569
|
-
.fwe-breadcrumb
|
|
12570
|
-
|
|
12583
|
+
.fwe-breadcrumb a[aria-current=page] {
|
|
12584
|
+
font-weight: bold;
|
|
12585
|
+
cursor: default;
|
|
12586
|
+
pointer-events: none;
|
|
12587
|
+
}
|
|
12588
|
+
.fwe-breadcrumb li:not(:last-child)::after {
|
|
12571
12589
|
content: "";
|
|
12572
12590
|
margin-left: 4px;
|
|
12573
12591
|
margin-right: 4px;
|
|
@@ -12575,11 +12593,19 @@ header.fwe-fixed-header {
|
|
|
12575
12593
|
width: 16px;
|
|
12576
12594
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
12577
12595
|
}
|
|
12578
|
-
.fwe-breadcrumb
|
|
12579
|
-
|
|
12580
|
-
|
|
12581
|
-
|
|
12582
|
-
|
|
12596
|
+
.fwe-breadcrumb--mobile li {
|
|
12597
|
+
display: none;
|
|
12598
|
+
}
|
|
12599
|
+
.fwe-breadcrumb--mobile li:nth-last-child(-n+2) {
|
|
12600
|
+
display: flex;
|
|
12601
|
+
}
|
|
12602
|
+
.fwe-breadcrumb--mobile li:nth-last-child(2)::before {
|
|
12603
|
+
content: "";
|
|
12604
|
+
margin-left: 0px;
|
|
12605
|
+
margin-right: 4px;
|
|
12606
|
+
height: 16px;
|
|
12607
|
+
width: 16px;
|
|
12608
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
12583
12609
|
}
|
|
12584
12610
|
|
|
12585
12611
|
a {
|
|
@@ -13568,7 +13594,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
13568
13594
|
}
|
|
13569
13595
|
|
|
13570
13596
|
/*!
|
|
13571
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
13597
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
13572
13598
|
* Copyright 2022 Festo SE & Co. KG
|
|
13573
13599
|
* Licensed under Apache-2.0
|
|
13574
13600
|
*/
|
|
@@ -14424,7 +14450,7 @@ fieldset.fwe-progress-container label {
|
|
|
14424
14450
|
}
|
|
14425
14451
|
|
|
14426
14452
|
/*!
|
|
14427
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14453
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
14428
14454
|
* Copyright 2022 Festo SE & Co. KG
|
|
14429
14455
|
* Licensed under Apache-2.0
|
|
14430
14456
|
*/
|
|
@@ -14655,7 +14681,7 @@ fieldset.fwe-progress-container label {
|
|
|
14655
14681
|
}
|
|
14656
14682
|
}
|
|
14657
14683
|
/*!
|
|
14658
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
14684
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
14659
14685
|
* Copyright 2022 Festo SE & Co. KG
|
|
14660
14686
|
* Licensed under Apache-2.0
|
|
14661
14687
|
*/
|
|
@@ -15391,7 +15417,7 @@ fieldset.fwe-progress-container label {
|
|
|
15391
15417
|
}
|
|
15392
15418
|
|
|
15393
15419
|
/*!
|
|
15394
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15420
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
15395
15421
|
* Copyright 2022 Festo SE & Co. KG
|
|
15396
15422
|
* Licensed under Apache-2.0
|
|
15397
15423
|
*/
|
|
@@ -15889,7 +15915,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
15889
15915
|
}
|
|
15890
15916
|
}
|
|
15891
15917
|
/*!
|
|
15892
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
15918
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
15893
15919
|
* Copyright 2022 Festo SE & Co. KG
|
|
15894
15920
|
* Licensed under Apache-2.0
|
|
15895
15921
|
*/
|
|
@@ -16173,7 +16199,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
16173
16199
|
}
|
|
16174
16200
|
|
|
16175
16201
|
/*!
|
|
16176
|
-
* Festo UI - Web Essentials v9.0.1-dev.
|
|
16202
|
+
* Festo UI - Web Essentials v9.0.1-dev.772 (https://storybook.festo.design/)
|
|
16177
16203
|
* Copyright 2022 Festo SE & Co. KG
|
|
16178
16204
|
* Licensed under Apache-2.0
|
|
16179
16205
|
*/
|