@festo-ui/web-essentials 8.1.0-dev.567 → 8.1.0-dev.569
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 +31 -19
- 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 +22 -10
- 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/_button.scss +0 -1
- package/dist/scss/_mobile-flyout.scss +0 -5
- package/dist/scss/_text-link.scss +25 -4
- 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/_button.scss +0 -1
- package/scss/_mobile-flyout.scss +0 -5
- package/scss/_text-link.scss +25 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -2979,7 +2979,7 @@ template {
|
|
|
2979
2979
|
}
|
|
2980
2980
|
|
|
2981
2981
|
/*!
|
|
2982
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
2982
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
2983
2983
|
* Copyright 2022 Festo SE & Co. KG
|
|
2984
2984
|
* Licensed under Apache-2.0
|
|
2985
2985
|
*/
|
|
@@ -14436,7 +14436,7 @@ header.fwe-fixed-header {
|
|
|
14436
14436
|
}
|
|
14437
14437
|
|
|
14438
14438
|
/*!
|
|
14439
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
14439
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
14440
14440
|
* Copyright 2022 Festo SE & Co. KG
|
|
14441
14441
|
* Licensed under Apache-2.0
|
|
14442
14442
|
*/
|
|
@@ -14569,7 +14569,6 @@ header.fwe-fixed-header {
|
|
|
14569
14569
|
}
|
|
14570
14570
|
|
|
14571
14571
|
.fwe-mobile-flyout-item {
|
|
14572
|
-
text-decoration: none;
|
|
14573
14572
|
color: var(--fwe-text);
|
|
14574
14573
|
cursor: pointer;
|
|
14575
14574
|
display: flex;
|
|
@@ -14579,9 +14578,6 @@ header.fwe-fixed-header {
|
|
|
14579
14578
|
.fwe-mobile-flyout-item.fwe-active {
|
|
14580
14579
|
color: var(--fwe-hero);
|
|
14581
14580
|
}
|
|
14582
|
-
.fwe-mobile-flyout-item:hover:not(.fwe-disabled) {
|
|
14583
|
-
text-decoration: none;
|
|
14584
|
-
}
|
|
14585
14581
|
|
|
14586
14582
|
.fwe-breadcrumb {
|
|
14587
14583
|
display: flex;
|
|
@@ -14636,8 +14632,7 @@ header.fwe-fixed-header {
|
|
|
14636
14632
|
|
|
14637
14633
|
a {
|
|
14638
14634
|
color: var(--fwe-hero);
|
|
14639
|
-
text-decoration:
|
|
14640
|
-
text-decoration-thickness: auto;
|
|
14635
|
+
text-decoration: none;
|
|
14641
14636
|
}
|
|
14642
14637
|
a i.fwe-icon {
|
|
14643
14638
|
vertical-align: text-top;
|
|
@@ -14645,15 +14640,33 @@ a i.fwe-icon {
|
|
|
14645
14640
|
a.fwe-dark {
|
|
14646
14641
|
color: var(--fwe-text);
|
|
14647
14642
|
}
|
|
14648
|
-
a.fwe-active {
|
|
14649
|
-
color: var(--fwe-hero);
|
|
14650
|
-
}
|
|
14651
14643
|
a.fwe-disabled {
|
|
14652
14644
|
pointer-events: none;
|
|
14653
14645
|
color: var(--fwe-text-light);
|
|
14654
14646
|
cursor: default;
|
|
14655
14647
|
}
|
|
14656
14648
|
a:hover:not(.fwe-disabled) {
|
|
14649
|
+
color: var(--fwe-hero-hover);
|
|
14650
|
+
text-decoration: none;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
.fwe-text-link {
|
|
14654
|
+
color: var(--fwe-hero);
|
|
14655
|
+
text-decoration: underline;
|
|
14656
|
+
text-decoration-thickness: auto;
|
|
14657
|
+
}
|
|
14658
|
+
.fwe-text-link i.fwe-icon {
|
|
14659
|
+
vertical-align: text-top;
|
|
14660
|
+
}
|
|
14661
|
+
.fwe-text-link.fwe-dark {
|
|
14662
|
+
color: var(--fwe-text);
|
|
14663
|
+
}
|
|
14664
|
+
.fwe-text-link.fwe-disabled {
|
|
14665
|
+
pointer-events: none;
|
|
14666
|
+
color: var(--fwe-text-light);
|
|
14667
|
+
cursor: default;
|
|
14668
|
+
}
|
|
14669
|
+
.fwe-text-link:hover:not(.fwe-disabled) {
|
|
14657
14670
|
color: var(--fwe-hero-hover);
|
|
14658
14671
|
text-decoration: underline;
|
|
14659
14672
|
text-decoration-thickness: auto;
|
|
@@ -15533,7 +15546,6 @@ button.fwe-btn.fwe-btn-block {
|
|
|
15533
15546
|
}
|
|
15534
15547
|
a.fwe-btn.fwe-btn-link,
|
|
15535
15548
|
button.fwe-btn.fwe-btn-link {
|
|
15536
|
-
text-decoration: none;
|
|
15537
15549
|
background: none;
|
|
15538
15550
|
color: var(--fwe-hero);
|
|
15539
15551
|
padding: 0;
|
|
@@ -15613,7 +15625,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
15613
15625
|
}
|
|
15614
15626
|
|
|
15615
15627
|
/*!
|
|
15616
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
15628
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
15617
15629
|
* Copyright 2022 Festo SE & Co. KG
|
|
15618
15630
|
* Licensed under Apache-2.0
|
|
15619
15631
|
*/
|
|
@@ -16464,7 +16476,7 @@ fieldset.fwe-progress-container label {
|
|
|
16464
16476
|
}
|
|
16465
16477
|
|
|
16466
16478
|
/*!
|
|
16467
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
16479
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
16468
16480
|
* Copyright 2022 Festo SE & Co. KG
|
|
16469
16481
|
* Licensed under Apache-2.0
|
|
16470
16482
|
*/
|
|
@@ -16687,7 +16699,7 @@ fieldset.fwe-progress-container label {
|
|
|
16687
16699
|
}
|
|
16688
16700
|
}
|
|
16689
16701
|
/*!
|
|
16690
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
16702
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
16691
16703
|
* Copyright 2022 Festo SE & Co. KG
|
|
16692
16704
|
* Licensed under Apache-2.0
|
|
16693
16705
|
*/
|
|
@@ -17406,7 +17418,7 @@ fieldset.fwe-progress-container label {
|
|
|
17406
17418
|
}
|
|
17407
17419
|
|
|
17408
17420
|
/*!
|
|
17409
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
17421
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
17410
17422
|
* Copyright 2022 Festo SE & Co. KG
|
|
17411
17423
|
* Licensed under Apache-2.0
|
|
17412
17424
|
*/
|
|
@@ -17904,7 +17916,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
17904
17916
|
}
|
|
17905
17917
|
}
|
|
17906
17918
|
/*!
|
|
17907
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
17919
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
17908
17920
|
* Copyright 2022 Festo SE & Co. KG
|
|
17909
17921
|
* Licensed under Apache-2.0
|
|
17910
17922
|
*/
|
|
@@ -18158,7 +18170,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
18158
18170
|
}
|
|
18159
18171
|
|
|
18160
18172
|
/*!
|
|
18161
|
-
* Festo UI - Web Essentials v8.1.0-dev.
|
|
18173
|
+
* Festo UI - Web Essentials v8.1.0-dev.569 (https://storybook.festo.design/)
|
|
18162
18174
|
* Copyright 2022 Festo SE & Co. KG
|
|
18163
18175
|
* Licensed under Apache-2.0
|
|
18164
18176
|
*/
|