hr-design-system-handlebars 1.52.4 → 1.52.5
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/CHANGELOG.md +12 -0
- package/dist/assets/index.css +7 -4
- package/package.json +1 -1
- package/src/assets/tailwind.css +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.52.5 (Thu Jan 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Dpe 2795 farbbalken hr werbung [#806](https://github.com/mumprod/hr-design-system-handlebars/pull/806) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.52.4 (Thu Jan 18 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3225,7 +3225,7 @@ article.indexText ul {
|
|
|
3225
3225
|
border-bottom-color: var(--color-secondary-ds);
|
|
3226
3226
|
}
|
|
3227
3227
|
.counter-reset {
|
|
3228
|
-
counter-reset:
|
|
3228
|
+
counter-reset: cnt1705589662103;
|
|
3229
3229
|
}
|
|
3230
3230
|
.hyphens-auto {
|
|
3231
3231
|
-webkit-hyphens: auto;
|
|
@@ -3527,7 +3527,7 @@ article.indexText ul {
|
|
|
3527
3527
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3528
3528
|
}
|
|
3529
3529
|
.-ordered {
|
|
3530
|
-
counter-increment:
|
|
3530
|
+
counter-increment: cnt1705589662103 1;
|
|
3531
3531
|
}
|
|
3532
3532
|
.-ordered::before {
|
|
3533
3533
|
position: absolute;
|
|
@@ -3543,7 +3543,7 @@ article.indexText ul {
|
|
|
3543
3543
|
letter-spacing: .0125em;
|
|
3544
3544
|
--tw-text-opacity: 1;
|
|
3545
3545
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3546
|
-
content: counter(
|
|
3546
|
+
content: counter(cnt1705589662103);
|
|
3547
3547
|
}
|
|
3548
3548
|
/*! ****************************/
|
|
3549
3549
|
/*! DataPolicy stuff */
|
|
@@ -4139,7 +4139,10 @@ article.indexText ul {
|
|
|
4139
4139
|
/* Service/Sectionnavigation Border-Color */
|
|
4140
4140
|
--color-navigation-border-color: #007396;
|
|
4141
4141
|
--color-servicenavigation-border-color: #007396;
|
|
4142
|
-
|
|
4142
|
+
/* Sectionnavigation Border Bottom Width*/
|
|
4143
|
+
--border-navigation-border-width: 11px;
|
|
4144
|
+
/* The Fancy special border on youfm */
|
|
4145
|
+
--border-navigation-border-image: linear-gradient(to right, #dda91e 0%, #dda91e 20%, #c32728 20%, #c32728 40%, #bf0171 40%, #bf0171 60%, #003a5c 60%, #003a5c 80%,#000206 80%, #007a9f 100%);
|
|
4143
4146
|
--color-footer-border: #a2bc09;
|
|
4144
4147
|
|
|
4145
4148
|
/* Medieninhalte, Video, Audio, Bildergalerie */
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "1.52.
|
|
9
|
+
"version": "1.52.5",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
package/src/assets/tailwind.css
CHANGED
|
@@ -504,7 +504,10 @@
|
|
|
504
504
|
/* Service/Sectionnavigation Border-Color */
|
|
505
505
|
--color-navigation-border-color: theme('colors.blue.blueLuxury');
|
|
506
506
|
--color-servicenavigation-border-color: theme('colors.blue.blueLuxury');
|
|
507
|
-
|
|
507
|
+
/* Sectionnavigation Border Bottom Width*/
|
|
508
|
+
--border-navigation-border-width: 11px;
|
|
509
|
+
/* The Fancy special border on youfm */
|
|
510
|
+
--border-navigation-border-image: linear-gradient(to right, #dda91e 0%, #dda91e 20%, #c32728 20%, #c32728 40%, #bf0171 40%, #bf0171 60%, #003a5c 60%, #003a5c 80%,#000206 80%, #007a9f 100%);
|
|
508
511
|
--color-footer-border: #a2bc09;
|
|
509
512
|
|
|
510
513
|
/* Medieninhalte, Video, Audio, Bildergalerie */
|