hr-design-system-handlebars 1.59.15 → 1.59.17
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 +24 -0
- package/dist/assets/index.css +76 -62
- package/dist/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views/components/content/copytext/components/infobox.hbs +3 -3
- package/dist/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views/components/footer/page_footer.hbs +4 -4
- package/dist/views/components/footer/page_footer_column.hbs +1 -1
- package/dist/views/components/footer/page_footer_content.hbs +1 -1
- package/dist/views/components/footer/page_footer_item.hbs +3 -3
- package/dist/views/components/social_sharing/social_sharing_compact.hbs +3 -3
- package/dist/views/components/teaser/teaser_indextext.hbs +4 -4
- package/dist/views_static/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/infobox.hbs +3 -3
- package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views_static/components/footer/page_footer.hbs +4 -4
- package/dist/views_static/components/footer/page_footer_column.hbs +1 -1
- package/dist/views_static/components/footer/page_footer_content.hbs +1 -1
- package/dist/views_static/components/footer/page_footer_item.hbs +3 -3
- package/dist/views_static/components/social_sharing/social_sharing_compact.hbs +3 -3
- package/dist/views_static/components/teaser/teaser_indextext.hbs +4 -4
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +14 -1
- package/src/stories/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/infobox.hbs +3 -3
- package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/src/stories/views/components/footer/page_footer.hbs +4 -4
- package/src/stories/views/components/footer/page_footer_column.hbs +1 -1
- package/src/stories/views/components/footer/page_footer_content.hbs +1 -1
- package/src/stories/views/components/footer/page_footer_item.hbs +3 -3
- package/src/stories/views/components/social_sharing/social_sharing_compact.hbs +3 -3
- package/src/stories/views/components/teaser/teaser_indextext.hbs +4 -4
- package/tailwind.config.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v1.59.17 (Thu Feb 29 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Dpe 2929 [#867](https://github.com/mumprod/hr-design-system-handlebars/pull/867) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.59.16 (Wed Feb 28 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- fix indexText-bug [#866](https://github.com/mumprod/hr-design-system-handlebars/pull/866) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v1.59.15 (Wed Feb 28 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -501,6 +501,12 @@ video {
|
|
|
501
501
|
max-width: 1024px;
|
|
502
502
|
}
|
|
503
503
|
}
|
|
504
|
+
@media (min-width: 1040px) {
|
|
505
|
+
|
|
506
|
+
.container {
|
|
507
|
+
max-width: 1040px;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
504
510
|
[x-cloak] {
|
|
505
511
|
display: none !important;
|
|
506
512
|
}
|
|
@@ -943,10 +949,36 @@ video {
|
|
|
943
949
|
}
|
|
944
950
|
}
|
|
945
951
|
/* -------------------------INDEXTEXT-TEASER ------------------------ */
|
|
946
|
-
article.
|
|
952
|
+
article.indexTextDS ul {
|
|
947
953
|
list-style-type: disc;
|
|
948
954
|
padding-left: 1rem;
|
|
949
955
|
}
|
|
956
|
+
article.indexTextDS .link {
|
|
957
|
+
color: #006eb7;
|
|
958
|
+
color: var(--color-link);
|
|
959
|
+
-webkit-text-decoration-line: underline;
|
|
960
|
+
text-decoration-line: underline;
|
|
961
|
+
text-decoration-thickness: 1px;
|
|
962
|
+
}
|
|
963
|
+
article.indexTextDS .indexTextHighlighted .link {
|
|
964
|
+
--tw-text-opacity: 1;
|
|
965
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
966
|
+
-webkit-text-decoration-line: underline;
|
|
967
|
+
text-decoration-line: underline;
|
|
968
|
+
text-decoration-thickness: 1px;
|
|
969
|
+
}
|
|
970
|
+
/* -----------------------------COPYTEXT ---------------------------- */
|
|
971
|
+
.copytextParagraphDS .link {
|
|
972
|
+
color: #006eb7;
|
|
973
|
+
color: var(--color-link);
|
|
974
|
+
-webkit-text-decoration-line: underline;
|
|
975
|
+
text-decoration-line: underline;
|
|
976
|
+
text-decoration-thickness: 1px;
|
|
977
|
+
}
|
|
978
|
+
[class~='tw-dark'] .copytextParagraphDS .link {
|
|
979
|
+
color: #006eb7;
|
|
980
|
+
color: var(--color-link-dark);
|
|
981
|
+
}
|
|
950
982
|
.sr-only {
|
|
951
983
|
position: absolute;
|
|
952
984
|
width: 1px;
|
|
@@ -998,9 +1030,6 @@ article.indexText ul {
|
|
|
998
1030
|
.-left-5 {
|
|
999
1031
|
left: -1.25rem;
|
|
1000
1032
|
}
|
|
1001
|
-
.-left-8 {
|
|
1002
|
-
left: -2rem;
|
|
1003
|
-
}
|
|
1004
1033
|
.bottom-0 {
|
|
1005
1034
|
bottom: 0px;
|
|
1006
1035
|
}
|
|
@@ -1026,6 +1055,9 @@ article.indexText ul {
|
|
|
1026
1055
|
.left-2\/4 {
|
|
1027
1056
|
left: 50%;
|
|
1028
1057
|
}
|
|
1058
|
+
.left-5 {
|
|
1059
|
+
left: 1.25rem;
|
|
1060
|
+
}
|
|
1029
1061
|
.left-\[4px\] {
|
|
1030
1062
|
left: 4px;
|
|
1031
1063
|
}
|
|
@@ -2102,8 +2134,8 @@ article.indexText ul {
|
|
|
2102
2134
|
.border-l-2 {
|
|
2103
2135
|
border-left-width: 2px;
|
|
2104
2136
|
}
|
|
2105
|
-
.border-l
|
|
2106
|
-
border-left-width:
|
|
2137
|
+
.border-l-\[3px\] {
|
|
2138
|
+
border-left-width: 3px;
|
|
2107
2139
|
}
|
|
2108
2140
|
.border-r {
|
|
2109
2141
|
border-right-width: 1px;
|
|
@@ -3281,7 +3313,7 @@ article.indexText ul {
|
|
|
3281
3313
|
border-bottom-color: var(--color-secondary-ds);
|
|
3282
3314
|
}
|
|
3283
3315
|
.counter-reset {
|
|
3284
|
-
counter-reset:
|
|
3316
|
+
counter-reset: cnt1709215096215;
|
|
3285
3317
|
}
|
|
3286
3318
|
.hyphens-auto {
|
|
3287
3319
|
-webkit-hyphens: auto;
|
|
@@ -3587,7 +3619,7 @@ article.indexText ul {
|
|
|
3587
3619
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3588
3620
|
}
|
|
3589
3621
|
.-ordered {
|
|
3590
|
-
counter-increment:
|
|
3622
|
+
counter-increment: cnt1709215096215 1;
|
|
3591
3623
|
}
|
|
3592
3624
|
.-ordered::before {
|
|
3593
3625
|
position: absolute;
|
|
@@ -3603,7 +3635,7 @@ article.indexText ul {
|
|
|
3603
3635
|
letter-spacing: .0125em;
|
|
3604
3636
|
--tw-text-opacity: 1;
|
|
3605
3637
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3606
|
-
content: counter(
|
|
3638
|
+
content: counter(cnt1709215096215);
|
|
3607
3639
|
}
|
|
3608
3640
|
/*! ****************************/
|
|
3609
3641
|
/*! DataPolicy stuff */
|
|
@@ -4923,47 +4955,6 @@ article.indexText ul {
|
|
|
4923
4955
|
.overflow-anywhere {
|
|
4924
4956
|
word-wrap: anywhere;
|
|
4925
4957
|
}
|
|
4926
|
-
@media (min-width: 768px) {
|
|
4927
|
-
|
|
4928
|
-
.md\:container {
|
|
4929
|
-
width: 100%;
|
|
4930
|
-
}
|
|
4931
|
-
|
|
4932
|
-
@media (min-width: 360px) {
|
|
4933
|
-
|
|
4934
|
-
.md\:container {
|
|
4935
|
-
max-width: 360px;
|
|
4936
|
-
}
|
|
4937
|
-
}
|
|
4938
|
-
|
|
4939
|
-
@media (min-width: 480px) {
|
|
4940
|
-
|
|
4941
|
-
.md\:container {
|
|
4942
|
-
max-width: 480px;
|
|
4943
|
-
}
|
|
4944
|
-
}
|
|
4945
|
-
|
|
4946
|
-
@media (min-width: 640px) {
|
|
4947
|
-
|
|
4948
|
-
.md\:container {
|
|
4949
|
-
max-width: 640px;
|
|
4950
|
-
}
|
|
4951
|
-
}
|
|
4952
|
-
|
|
4953
|
-
@media (min-width: 768px) {
|
|
4954
|
-
|
|
4955
|
-
.md\:container {
|
|
4956
|
-
max-width: 768px;
|
|
4957
|
-
}
|
|
4958
|
-
}
|
|
4959
|
-
|
|
4960
|
-
@media (min-width: 1024px) {
|
|
4961
|
-
|
|
4962
|
-
.md\:container {
|
|
4963
|
-
max-width: 1024px;
|
|
4964
|
-
}
|
|
4965
|
-
}
|
|
4966
|
-
}
|
|
4967
4958
|
@media (min-width: 1024px) {
|
|
4968
4959
|
|
|
4969
4960
|
.lg\:container {
|
|
@@ -5004,6 +4995,13 @@ article.indexText ul {
|
|
|
5004
4995
|
max-width: 1024px;
|
|
5005
4996
|
}
|
|
5006
4997
|
}
|
|
4998
|
+
|
|
4999
|
+
@media (min-width: 1040px) {
|
|
5000
|
+
|
|
5001
|
+
.lg\:container {
|
|
5002
|
+
max-width: 1040px;
|
|
5003
|
+
}
|
|
5004
|
+
}
|
|
5007
5005
|
}
|
|
5008
5006
|
.placeholder\:text-gray-dark::-webkit-input-placeholder {
|
|
5009
5007
|
--tw-text-opacity: 1;
|
|
@@ -6025,10 +6023,6 @@ article.indexText ul {
|
|
|
6025
6023
|
margin-left: 0.75rem;
|
|
6026
6024
|
}
|
|
6027
6025
|
|
|
6028
|
-
.md\:ml-4 {
|
|
6029
|
-
margin-left: 1rem;
|
|
6030
|
-
}
|
|
6031
|
-
|
|
6032
6026
|
.md\:mt-0 {
|
|
6033
6027
|
margin-top: 0px;
|
|
6034
6028
|
}
|
|
@@ -6311,6 +6305,16 @@ article.indexText ul {
|
|
|
6311
6305
|
padding-right: 1.25rem;
|
|
6312
6306
|
}
|
|
6313
6307
|
|
|
6308
|
+
.md\:px-9 {
|
|
6309
|
+
padding-left: 2.25rem;
|
|
6310
|
+
padding-right: 2.25rem;
|
|
6311
|
+
}
|
|
6312
|
+
|
|
6313
|
+
.md\:px-9\.5 {
|
|
6314
|
+
padding-left: 2.375rem;
|
|
6315
|
+
padding-right: 2.375rem;
|
|
6316
|
+
}
|
|
6317
|
+
|
|
6314
6318
|
.md\:py-0 {
|
|
6315
6319
|
padding-top: 0px;
|
|
6316
6320
|
padding-bottom: 0px;
|
|
@@ -6320,10 +6324,6 @@ article.indexText ul {
|
|
|
6320
6324
|
padding-left: 0px;
|
|
6321
6325
|
}
|
|
6322
6326
|
|
|
6323
|
-
.md\:pl-4 {
|
|
6324
|
-
padding-left: 1rem;
|
|
6325
|
-
}
|
|
6326
|
-
|
|
6327
6327
|
.md\:pl-5 {
|
|
6328
6328
|
padding-left: 1.25rem;
|
|
6329
6329
|
}
|
|
@@ -6332,10 +6332,6 @@ article.indexText ul {
|
|
|
6332
6332
|
padding-right: 0px;
|
|
6333
6333
|
}
|
|
6334
6334
|
|
|
6335
|
-
.md\:pr-4 {
|
|
6336
|
-
padding-right: 1rem;
|
|
6337
|
-
}
|
|
6338
|
-
|
|
6339
6335
|
.md\:pr-5 {
|
|
6340
6336
|
padding-right: 1.25rem;
|
|
6341
6337
|
}
|
|
@@ -7222,6 +7218,24 @@ article.indexText ul {
|
|
|
7222
7218
|
border-left-width: 1px;
|
|
7223
7219
|
}
|
|
7224
7220
|
}
|
|
7221
|
+
@media (min-width: 1040px) {
|
|
7222
|
+
|
|
7223
|
+
.socialShareDesktop\:bottom-auto {
|
|
7224
|
+
bottom: auto;
|
|
7225
|
+
}
|
|
7226
|
+
|
|
7227
|
+
.socialShareDesktop\:left-1 {
|
|
7228
|
+
left: 0.25rem;
|
|
7229
|
+
}
|
|
7230
|
+
|
|
7231
|
+
.socialShareDesktop\:top-0 {
|
|
7232
|
+
top: 0px;
|
|
7233
|
+
}
|
|
7234
|
+
|
|
7235
|
+
.socialShareDesktop\:top-5 {
|
|
7236
|
+
top: 1.25rem;
|
|
7237
|
+
}
|
|
7238
|
+
}
|
|
7225
7239
|
.\[\&\:has\(\+\.-hideOnMobile\)\]\:order-1[\:has\(\%2B.-hideOnMobile\)] {
|
|
7226
7240
|
order: 1;
|
|
7227
7241
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-
|
|
1
|
+
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-[3px] border-gray-boulder overflow-auto {{#if _showFullsize}}clear-both my-12 sm:my-14 {{else}}mb-12 sm:mb-14 sm:mt-7 mt-12 mr-0 sm:mr-5 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
2
|
{{~> @partial-block ~}}
|
|
3
3
|
</div>
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
|
|
59
59
|
{{#each this.text.split}}
|
|
60
60
|
{{#if this.isText}}
|
|
61
|
-
<p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
61
|
+
<p class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
62
62
|
{{/if}}
|
|
63
63
|
{{#if this.isUl}}
|
|
64
|
-
<ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
64
|
+
<ul class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
65
65
|
{{/if}}
|
|
66
66
|
{{#if this.isOl}}
|
|
67
|
-
<ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
67
|
+
<ol class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
68
68
|
{{/if}}
|
|
69
69
|
{{/each}}
|
|
70
70
|
{{~#block "subParagraphs"}}{{/block~}}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="copytextParagraphDS mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
<footer class="relative
|
|
1
|
+
<footer class="relative grid justify-center w-full text-base border-t grid-page cy-footer pb-footer-padding-bottom text-footer-text print:hidden bg-footer-bg border-footer-border js-pageFooter" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter" >
|
|
2
2
|
<div class="absolute top-feature-box-height" x-data x-intersect="$store.footerIsVisible = true" x-intersect:leave="$store.footerIsVisible = false"></div>
|
|
3
|
-
<div class="
|
|
3
|
+
<div class="col-full sm:col-main md:px-9.5">
|
|
4
4
|
<span class="hidden">Footer Navigation</span>
|
|
5
5
|
|
|
6
6
|
<div class="flex flex-wrap justify-start list-none">
|
|
7
7
|
{{~> components/footer/page_footer_content ~}}
|
|
8
|
-
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-
|
|
8
|
+
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-0">
|
|
9
9
|
{{> components/site_header/service_logo _isFooter=true}}
|
|
10
10
|
</div>
|
|
11
|
-
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-
|
|
11
|
+
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-0 md:flex-row ">
|
|
12
12
|
{{> components/footer/page_footer_metadata
|
|
13
13
|
_hrDeLink=this.footerMetadata.hrDeLink
|
|
14
14
|
_ardDeLink=this.footerMetadata.ardDeLink
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<nav x-data="{dropped:false}" class="w-full md:mt-4 md:mb-8">
|
|
2
|
-
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:
|
|
2
|
+
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:py-0 lg:m-0">
|
|
3
3
|
|
|
4
4
|
<span class="flex justify-start text-lg font-bold text-footer-heading " title="{{_title}}" onclick="">{{_title}} </span>
|
|
5
5
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{{~> components/footer/page_footer_column _columns=this.groups.[1].columns _hasCookieSettings=true _title=this.groups.[1].title ~}}
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-
|
|
9
|
+
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-0 -third">
|
|
10
10
|
|
|
11
11
|
<div class="p-0 pb-4 m-0 md:pt-10 md:mt-10 md:border-t border-footer-heading">
|
|
12
12
|
{{> components/footer/page_footer_search }}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{{#if this.extern}}
|
|
2
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
2
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6">
|
|
3
3
|
{{> components/footer/page_footer_nav_link _css="flex hover:underline" _link=this _iconName="extern" }}
|
|
4
4
|
</li>
|
|
5
5
|
{{else}}
|
|
6
6
|
{{#if this.paragraphed}}
|
|
7
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent
|
|
7
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent md:pl-0 border-b-secondary md:mt-6 md:border-0 md:h-6">
|
|
8
8
|
{{> components/footer/page_footer_nav_link _site=this.site _css="hover:underline" _link=this}}
|
|
9
9
|
</li>
|
|
10
10
|
{{else}}
|
|
11
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
11
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6 ">
|
|
12
12
|
{{> components/footer/page_footer_nav_link _link=this _site=this.site _css="flex hover:underline" }}
|
|
13
13
|
</li>
|
|
14
14
|
{{/if}}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
focusAfter && focusAfter.focus()
|
|
32
32
|
},
|
|
33
33
|
checkIfDesktop() {
|
|
34
|
-
this.isDesktop = (window.innerWidth >=
|
|
34
|
+
this.isDesktop = (window.innerWidth >= 1040) ? true : false
|
|
35
35
|
}
|
|
36
36
|
}"
|
|
37
37
|
x-init = "checkIfDesktop()"
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
open:<span x-text="open" ></span><br>
|
|
49
49
|
isDesktop:<span x-text="isDesktop" ></span>
|
|
50
50
|
</div>
|
|
51
|
-
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height left-0 w-full': !sharingIsVisible }">
|
|
51
|
+
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height socialShareDesktop:bottom-auto socialShareDesktop:top-0 left-0 w-full': !sharingIsVisible }">
|
|
52
52
|
<div class="" :class="{ 'flex justify-start col-full sm:col-main relative': !sharingIsVisible }">
|
|
53
|
-
<div class="flex gap-3" :class="{ 'bottom-5 -left-
|
|
53
|
+
<div class="flex gap-3" :class="{ 'bottom-5 socialShareDesktop:top-5 left-5 socialShareDesktop:left-1 flex-col absolute bg-white': !sharingIsVisible }">
|
|
54
54
|
<button
|
|
55
55
|
class="order-2 w-8 h-8 ds-button font-heading active:scale-95 hover:scale-105 group"
|
|
56
56
|
x-show="!isDesktop"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='
|
|
2
|
+
class='indexTextDS rounded-tl-hr rounded-br-hr mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
{{this.title}}
|
|
17
17
|
</h3>
|
|
18
18
|
{{/if}}
|
|
19
|
-
<
|
|
19
|
+
<div
|
|
20
20
|
class='{{#if this.title}}mt-6 {{/if}}text-sm md:text-base font-copy
|
|
21
|
-
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white",""]'}}'
|
|
21
|
+
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white indexTextHighlighted",""]'}}'
|
|
22
22
|
>
|
|
23
23
|
{{{this.shorttext}}}
|
|
24
|
-
</
|
|
24
|
+
</div>
|
|
25
25
|
</article>
|
package/dist/views_static/components/content/copytext/components/common/paragraphbox_wrapper.hbs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-
|
|
1
|
+
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-[3px] border-gray-boulder overflow-auto {{#if _showFullsize}}clear-both my-12 sm:my-14 {{else}}mb-12 sm:mb-14 sm:mt-7 mt-12 mr-0 sm:mr-5 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
2
|
{{~> @partial-block ~}}
|
|
3
3
|
</div>
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
|
|
59
59
|
{{#each this.text.split}}
|
|
60
60
|
{{#if this.isText}}
|
|
61
|
-
<p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
61
|
+
<p class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
62
62
|
{{/if}}
|
|
63
63
|
{{#if this.isUl}}
|
|
64
|
-
<ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
64
|
+
<ul class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
65
65
|
{{/if}}
|
|
66
66
|
{{#if this.isOl}}
|
|
67
|
-
<ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
67
|
+
<ol class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
68
68
|
{{/if}}
|
|
69
69
|
{{/each}}
|
|
70
70
|
{{~#block "subParagraphs"}}{{/block~}}
|
package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="copytextParagraphDS mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
<footer class="relative
|
|
1
|
+
<footer class="relative grid justify-center w-full text-base border-t grid-page cy-footer pb-footer-padding-bottom text-footer-text print:hidden bg-footer-bg border-footer-border js-pageFooter" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter" >
|
|
2
2
|
<div class="absolute top-feature-box-height" x-data x-intersect="$store.footerIsVisible = true" x-intersect:leave="$store.footerIsVisible = false"></div>
|
|
3
|
-
<div class="
|
|
3
|
+
<div class="col-full sm:col-main md:px-9.5">
|
|
4
4
|
<span class="hidden">Footer Navigation</span>
|
|
5
5
|
|
|
6
6
|
<div class="flex flex-wrap justify-start list-none">
|
|
7
7
|
{{~> components/footer/page_footer_content ~}}
|
|
8
|
-
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-
|
|
8
|
+
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-0">
|
|
9
9
|
{{> components/site_header/service_logo _isFooter=true}}
|
|
10
10
|
</div>
|
|
11
|
-
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-
|
|
11
|
+
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-0 md:flex-row ">
|
|
12
12
|
{{> components/footer/page_footer_metadata
|
|
13
13
|
_hrDeLink=this.footerMetadata.hrDeLink
|
|
14
14
|
_ardDeLink=this.footerMetadata.ardDeLink
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<nav x-data="{dropped:false}" class="w-full md:mt-4 md:mb-8">
|
|
2
|
-
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:
|
|
2
|
+
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:py-0 lg:m-0">
|
|
3
3
|
|
|
4
4
|
<span class="flex justify-start text-lg font-bold text-footer-heading " title="{{_title}}" onclick="">{{_title}} </span>
|
|
5
5
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{{~> components/footer/page_footer_column _columns=this.groups.[1].columns _hasCookieSettings=true _title=this.groups.[1].title ~}}
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-
|
|
9
|
+
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-0 -third">
|
|
10
10
|
|
|
11
11
|
<div class="p-0 pb-4 m-0 md:pt-10 md:mt-10 md:border-t border-footer-heading">
|
|
12
12
|
{{> components/footer/page_footer_search }}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{{#if this.extern}}
|
|
2
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
2
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6">
|
|
3
3
|
{{> components/footer/page_footer_nav_link _css="flex hover:underline" _link=this _iconName="extern" }}
|
|
4
4
|
</li>
|
|
5
5
|
{{else}}
|
|
6
6
|
{{#if this.paragraphed}}
|
|
7
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent
|
|
7
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent md:pl-0 border-b-secondary md:mt-6 md:border-0 md:h-6">
|
|
8
8
|
{{> components/footer/page_footer_nav_link _site=this.site _css="hover:underline" _link=this}}
|
|
9
9
|
</li>
|
|
10
10
|
{{else}}
|
|
11
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
11
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6 ">
|
|
12
12
|
{{> components/footer/page_footer_nav_link _link=this _site=this.site _css="flex hover:underline" }}
|
|
13
13
|
</li>
|
|
14
14
|
{{/if}}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
focusAfter && focusAfter.focus()
|
|
32
32
|
},
|
|
33
33
|
checkIfDesktop() {
|
|
34
|
-
this.isDesktop = (window.innerWidth >=
|
|
34
|
+
this.isDesktop = (window.innerWidth >= 1040) ? true : false
|
|
35
35
|
}
|
|
36
36
|
}"
|
|
37
37
|
x-init = "checkIfDesktop()"
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
open:<span x-text="open" ></span><br>
|
|
49
49
|
isDesktop:<span x-text="isDesktop" ></span>
|
|
50
50
|
</div>
|
|
51
|
-
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height left-0 w-full': !sharingIsVisible }">
|
|
51
|
+
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height socialShareDesktop:bottom-auto socialShareDesktop:top-0 left-0 w-full': !sharingIsVisible }">
|
|
52
52
|
<div class="" :class="{ 'flex justify-start col-full sm:col-main relative': !sharingIsVisible }">
|
|
53
|
-
<div class="flex gap-3" :class="{ 'bottom-5 -left-
|
|
53
|
+
<div class="flex gap-3" :class="{ 'bottom-5 socialShareDesktop:top-5 left-5 socialShareDesktop:left-1 flex-col absolute bg-white': !sharingIsVisible }">
|
|
54
54
|
<button
|
|
55
55
|
class="order-2 w-8 h-8 ds-button font-heading active:scale-95 hover:scale-105 group"
|
|
56
56
|
x-show="!isDesktop"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='
|
|
2
|
+
class='indexTextDS rounded-tl-hr rounded-br-hr mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
{{this.title}}
|
|
17
17
|
</h3>
|
|
18
18
|
{{/if}}
|
|
19
|
-
<
|
|
19
|
+
<div
|
|
20
20
|
class='{{#if this.title}}mt-6 {{/if}}text-sm md:text-base font-copy
|
|
21
|
-
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white",""]'}}'
|
|
21
|
+
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white indexTextHighlighted",""]'}}'
|
|
22
22
|
>
|
|
23
23
|
{{{this.shorttext}}}
|
|
24
|
-
</
|
|
24
|
+
</div>
|
|
25
25
|
</article>
|
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.59.
|
|
9
|
+
"version": "1.59.17",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -292,6 +292,19 @@
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
/* -------------------------INDEXTEXT-TEASER ------------------------ */
|
|
295
|
-
article.
|
|
295
|
+
article.indexTextDS ul {
|
|
296
296
|
@apply pl-4 list-disc;
|
|
297
297
|
}
|
|
298
|
+
|
|
299
|
+
article.indexTextDS .link {
|
|
300
|
+
@apply underline text-link decoration-1;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
article.indexTextDS .indexTextHighlighted .link {
|
|
304
|
+
@apply text-white underline decoration-1;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/* -----------------------------COPYTEXT ---------------------------- */
|
|
308
|
+
.copytextParagraphDS .link {
|
|
309
|
+
@apply underline text-link decoration-1 dark:text-link-dark;
|
|
310
|
+
}
|
package/src/stories/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-
|
|
1
|
+
<div class="ml-1 sm:ml-6 px-4 sm:px-6 border-l-[3px] border-gray-boulder overflow-auto {{#if _showFullsize}}clear-both my-12 sm:my-14 {{else}}mb-12 sm:mb-14 sm:mt-7 mt-12 mr-0 sm:mr-5 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
2
|
{{~> @partial-block ~}}
|
|
3
3
|
</div>
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
|
|
59
59
|
{{#each this.text.split}}
|
|
60
60
|
{{#if this.isText}}
|
|
61
|
-
<p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
61
|
+
<p class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
62
62
|
{{/if}}
|
|
63
63
|
{{#if this.isUl}}
|
|
64
|
-
<ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
64
|
+
<ul class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
65
65
|
{{/if}}
|
|
66
66
|
{{#if this.isOl}}
|
|
67
|
-
<ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
67
|
+
<ol class="copytextParagraphDS {{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
68
68
|
{{/if}}
|
|
69
69
|
{{/each}}
|
|
70
70
|
{{~#block "subParagraphs"}}{{/block~}}
|
package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="copytextParagraphDS mt-6 text-lg leading-[1.625rem] sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-disc sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="copytextParagraphDS mt-6 ml-5 text-lg leading-[1.625rem] list-decimal sm480:text-xl sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
<footer class="relative
|
|
1
|
+
<footer class="relative grid justify-center w-full text-base border-t grid-page cy-footer pb-footer-padding-bottom text-footer-text print:hidden bg-footer-bg border-footer-border js-pageFooter" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter" >
|
|
2
2
|
<div class="absolute top-feature-box-height" x-data x-intersect="$store.footerIsVisible = true" x-intersect:leave="$store.footerIsVisible = false"></div>
|
|
3
|
-
<div class="
|
|
3
|
+
<div class="col-full sm:col-main md:px-9.5">
|
|
4
4
|
<span class="hidden">Footer Navigation</span>
|
|
5
5
|
|
|
6
6
|
<div class="flex flex-wrap justify-start list-none">
|
|
7
7
|
{{~> components/footer/page_footer_content ~}}
|
|
8
|
-
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-
|
|
8
|
+
<div class="flex w-auto mx-auto mt-12 mb-4 md:mt-0 md:mb-0 md:mx-0 md:pl-0">
|
|
9
9
|
{{> components/site_header/service_logo _isFooter=true}}
|
|
10
10
|
</div>
|
|
11
|
-
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-
|
|
11
|
+
<div class="flex flex-col w-full pt-2 text-left md:items-end md:justify-between md:pl-0 md:flex-row ">
|
|
12
12
|
{{> components/footer/page_footer_metadata
|
|
13
13
|
_hrDeLink=this.footerMetadata.hrDeLink
|
|
14
14
|
_ardDeLink=this.footerMetadata.ardDeLink
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<nav x-data="{dropped:false}" class="w-full md:mt-4 md:mb-8">
|
|
2
|
-
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:
|
|
2
|
+
<div @click="dropped = !dropped" class="flex justify-between w-full px-2 py-2 border-b border-footer-heading md:px-0 md:py-0 lg:m-0">
|
|
3
3
|
|
|
4
4
|
<span class="flex justify-start text-lg font-bold text-footer-heading " title="{{_title}}" onclick="">{{_title}} </span>
|
|
5
5
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{{~> components/footer/page_footer_column _columns=this.groups.[1].columns _hasCookieSettings=true _title=this.groups.[1].title ~}}
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-
|
|
9
|
+
<div class="flex flex-col w-full pt-4 md:w-1/4 md:w-max-1/4 md:pt-0 md:pr-0 -third">
|
|
10
10
|
|
|
11
11
|
<div class="p-0 pb-4 m-0 md:pt-10 md:mt-10 md:border-t border-footer-heading">
|
|
12
12
|
{{> components/footer/page_footer_search }}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{{#if this.extern}}
|
|
2
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
2
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6">
|
|
3
3
|
{{> components/footer/page_footer_nav_link _css="flex hover:underline" _link=this _iconName="extern" }}
|
|
4
4
|
</li>
|
|
5
5
|
{{else}}
|
|
6
6
|
{{#if this.paragraphed}}
|
|
7
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent
|
|
7
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:bg-transparent md:pl-0 border-b-secondary md:mt-6 md:border-0 md:h-6">
|
|
8
8
|
{{> components/footer/page_footer_nav_link _site=this.site _css="hover:underline" _link=this}}
|
|
9
9
|
</li>
|
|
10
10
|
{{else}}
|
|
11
|
-
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap
|
|
11
|
+
<li class="flex items-center w-full h-10 pl-4 bg-white border-b whitespace-nowrap md:pl-0 md:bg-transparent border-b-secondary md:border-0 md:h-6 ">
|
|
12
12
|
{{> components/footer/page_footer_nav_link _link=this _site=this.site _css="flex hover:underline" }}
|
|
13
13
|
</li>
|
|
14
14
|
{{/if}}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
focusAfter && focusAfter.focus()
|
|
32
32
|
},
|
|
33
33
|
checkIfDesktop() {
|
|
34
|
-
this.isDesktop = (window.innerWidth >=
|
|
34
|
+
this.isDesktop = (window.innerWidth >= 1040) ? true : false
|
|
35
35
|
}
|
|
36
36
|
}"
|
|
37
37
|
x-init = "checkIfDesktop()"
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
open:<span x-text="open" ></span><br>
|
|
49
49
|
isDesktop:<span x-text="isDesktop" ></span>
|
|
50
50
|
</div>
|
|
51
|
-
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height left-0 w-full': !sharingIsVisible }">
|
|
51
|
+
<div :class="{ 'grid grid-page z-100 fixed bottom-feature-box-height socialShareDesktop:bottom-auto socialShareDesktop:top-0 left-0 w-full': !sharingIsVisible }">
|
|
52
52
|
<div class="" :class="{ 'flex justify-start col-full sm:col-main relative': !sharingIsVisible }">
|
|
53
|
-
<div class="flex gap-3" :class="{ 'bottom-5 -left-
|
|
53
|
+
<div class="flex gap-3" :class="{ 'bottom-5 socialShareDesktop:top-5 left-5 socialShareDesktop:left-1 flex-col absolute bg-white': !sharingIsVisible }">
|
|
54
54
|
<button
|
|
55
55
|
class="order-2 w-8 h-8 ds-button font-heading active:scale-95 hover:scale-105 group"
|
|
56
56
|
x-show="!isDesktop"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<article
|
|
2
|
-
class='
|
|
2
|
+
class='indexTextDS rounded-tl-hr rounded-br-hr mx-5 sm:mx-0 p-8 md:p-10 relative col-span-12 flex flex-col gap-x-4
|
|
3
3
|
{{~inline-switch this.teaserSize '["50"]' '[" md:col-span-6",""]'}}
|
|
4
4
|
{{~inline-switch
|
|
5
5
|
this.teaserType
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
{{this.title}}
|
|
17
17
|
</h3>
|
|
18
18
|
{{/if}}
|
|
19
|
-
<
|
|
19
|
+
<div
|
|
20
20
|
class='{{#if this.title}}mt-6 {{/if}}text-sm md:text-base font-copy
|
|
21
|
-
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white",""]'}}'
|
|
21
|
+
{{~inline-switch this.teaserType '["highlighted"]' '[" text-white indexTextHighlighted",""]'}}'
|
|
22
22
|
>
|
|
23
23
|
{{{this.shorttext}}}
|
|
24
|
-
</
|
|
24
|
+
</div>
|
|
25
25
|
</article>
|