@festo-ui/web-essentials 7.2.0-dev.418 → 7.2.0-dev.421
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 +13 -9
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +2 -2
- package/dist/css/festo-web-essentials.min.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 +12 -8
- 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 +12 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v7.2.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v7.2.0-dev.421 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -14558,27 +14558,23 @@ header.fwe-fixed-header {
|
|
|
14558
14558
|
display: flex;
|
|
14559
14559
|
justify-items: center;
|
|
14560
14560
|
align-items: center;
|
|
14561
|
-
color: var(--fwe-text-light);
|
|
14562
|
-
}
|
|
14563
|
-
.fwe-breadcrumb .fwe-icon, .fwe-breadcrumb .fwe-navbar .fwe-navbar-burger-menu, .fwe-navbar .fwe-breadcrumb .fwe-navbar-burger-menu,
|
|
14564
|
-
.fwe-breadcrumb .fwe-svg-icon {
|
|
14565
|
-
margin-left: 4px;
|
|
14566
|
-
margin-right: 4px;
|
|
14567
14561
|
}
|
|
14568
14562
|
.fwe-breadcrumb a {
|
|
14569
|
-
color: var(--fwe-text
|
|
14563
|
+
color: var(--fwe-text);
|
|
14570
14564
|
text-decoration: none;
|
|
14571
14565
|
-webkit-user-select: none;
|
|
14572
14566
|
-moz-user-select: none;
|
|
14573
14567
|
user-select: none;
|
|
14574
14568
|
font-size: var(--fwe-font-size-md);
|
|
14575
14569
|
line-height: calc(var(--fwe-font-size-md) + 2px);
|
|
14570
|
+
position: relative;
|
|
14576
14571
|
}
|
|
14577
14572
|
.fwe-breadcrumb a:focus {
|
|
14578
14573
|
outline: none;
|
|
14579
14574
|
}
|
|
14580
14575
|
.fwe-breadcrumb a:not(:last-child) {
|
|
14581
14576
|
cursor: pointer;
|
|
14577
|
+
margin-right: 24px;
|
|
14582
14578
|
}
|
|
14583
14579
|
.fwe-breadcrumb a:not(:last-child):hover {
|
|
14584
14580
|
color: var(--fwe-hero);
|
|
@@ -14586,8 +14582,16 @@ header.fwe-fixed-header {
|
|
|
14586
14582
|
.fwe-breadcrumb a:not(:last-child):active {
|
|
14587
14583
|
color: var(--fwe-hero-active);
|
|
14588
14584
|
}
|
|
14585
|
+
.fwe-breadcrumb a:not(:last-child)::after {
|
|
14586
|
+
position: absolute;
|
|
14587
|
+
right: -20px;
|
|
14588
|
+
content: "";
|
|
14589
|
+
height: 16px;
|
|
14590
|
+
width: 16px;
|
|
14591
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0id2hpdGUgYmFja2dyb3VuZCIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAxNlYwaDE2djE2eiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xMC43MDcgOC00LjM1MyA0LjM1NC0uNzA4LS43MDhMOS4yOTMgOCA1LjY0NiA0LjM1NGwuNzA4LS43MDhMMTAuNzA3IDh6Ii8+PC9zdmc+");
|
|
14592
|
+
}
|
|
14589
14593
|
.fwe-breadcrumb a:last-child {
|
|
14590
|
-
|
|
14594
|
+
font-weight: bold;
|
|
14591
14595
|
cursor: default;
|
|
14592
14596
|
pointer-events: none;
|
|
14593
14597
|
}
|