hr-design-system-handlebars 1.82.11 → 1.83.1
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 +25 -0
- package/dist/assets/index.css +92 -56
- package/dist/assets/js/components/dataPolicySettings/dataPolicySettingsDs.feature.js +29 -29
- package/dist/views/components/content/copytext/components/audio.hbs +2 -2
- package/dist/views/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/dist/views/components/content/copytext/components/cite.hbs +1 -1
- package/dist/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views/components/content/copytext/components/image/image.hbs +4 -4
- package/dist/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/dist/views/components/content/copytext/components/posterteaser.hbs +1 -1
- package/dist/views/components/content/copytext/components/video/video.hbs +2 -2
- package/dist/views/components/content/copytext/components/videolivestream.hbs +2 -2
- package/dist/views/components/page/base/page_header.hbs +1 -1
- package/dist/views/components/page/components/metadatabox.hbs +1 -1
- package/dist/views/components/page/story/story_article.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/audio.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/cite.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/image/image.hbs +4 -4
- package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views_static/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/posterteaser.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/video/video.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/videolivestream.hbs +2 -2
- package/dist/views_static/components/page/base/page_header.hbs +1 -1
- package/dist/views_static/components/page/components/metadatabox.hbs +1 -1
- package/dist/views_static/components/page/story/story_article.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/css/custom-utilities.css +21 -14
- package/src/assets/fixtures/content/copytext/copytext_audio.json +116 -0
- package/src/assets/fixtures/content/copytext/copytext_audio_livestream.json +115 -0
- package/src/assets/fixtures/content/copytext/copytext_cite.json +65 -7
- package/src/assets/fixtures/content/copytext/copytext_downloadbox.json +83 -11
- package/src/assets/fixtures/content/copytext/copytext_filedownload.json +86 -15
- package/src/assets/fixtures/content/copytext/copytext_image.json +92 -0
- package/src/assets/fixtures/content/copytext/copytext_infobox.json +65 -16
- package/src/assets/fixtures/content/copytext/copytext_livestream.json +84 -0
- package/src/assets/fixtures/content/copytext/copytext_media_components.json +1291 -0
- package/src/assets/fixtures/content/copytext/copytext_non_media_components.json +1058 -0
- package/src/assets/fixtures/content/copytext/copytext_podcastepisode.json +84 -0
- package/src/assets/fixtures/content/copytext/copytext_posterteaser.json +82 -7
- package/src/assets/fixtures/content/copytext/copytext_video.json +161 -0
- package/src/stories/views/components/content/copytext/components/audio.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/cite.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/image/image.hbs +4 -4
- package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/src/stories/views/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/posterteaser.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/video/video.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/videolivestream.hbs +2 -2
- package/src/stories/views/components/content/copytext/copytext.stories.js +21 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_audio.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_audio_livestream.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_cite.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_downloadbox.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_filedownload.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_image.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_infobox.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_livestream.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_media_components.json +1 -0
- package/src/stories/views/components/content/copytext/fixtures/copytext_non_media_components.json +1 -0
- package/src/stories/views/components/content/copytext/fixtures/copytext_podcastepisode.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_posterteaser.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_video.json +1 -1
- package/src/stories/views/components/dataPolicySettings/dataPolicySettingsDs.feature.js +29 -29
- package/src/stories/views/components/page/base/page_header.hbs +1 -1
- package/src/stories/views/components/page/components/metadatabox.hbs +1 -1
- package/src/stories/views/components/page/story/story_article.hbs +1 -1
- package/tailwind.config.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v1.83.1 (Thu Jul 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- DPE-3245: Fix horizontal spacing in Infobox/Content-Box/file-download [#1018](https://github.com/mumprod/hr-design-system-handlebars/pull/1018) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
10
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v1.83.0 (Thu Jul 18 2024)
|
|
15
|
+
|
|
16
|
+
#### 🚀 Enhancement
|
|
17
|
+
|
|
18
|
+
- Feature/vertical spacing [#1017](https://github.com/mumprod/hr-design-system-handlebars/pull/1017) ([@szuelch](https://github.com/szuelch))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- [@szuelch](https://github.com/szuelch)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v1.82.11 (Thu Jul 18 2024)
|
|
2
27
|
|
|
3
28
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1717,9 +1717,6 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
1717
1717
|
.w-5 {
|
|
1718
1718
|
width: 1.25rem;
|
|
1719
1719
|
}
|
|
1720
|
-
.w-5\/6 {
|
|
1721
|
-
width: 83.333333%;
|
|
1722
|
-
}
|
|
1723
1720
|
.w-6 {
|
|
1724
1721
|
width: 1.5rem;
|
|
1725
1722
|
}
|
|
@@ -2756,9 +2753,6 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
2756
2753
|
.pb-6 {
|
|
2757
2754
|
padding-bottom: 1.5rem;
|
|
2758
2755
|
}
|
|
2759
|
-
.pb-8 {
|
|
2760
|
-
padding-bottom: 2rem;
|
|
2761
|
-
}
|
|
2762
2756
|
.pb-9 {
|
|
2763
2757
|
padding-bottom: 2.25rem;
|
|
2764
2758
|
}
|
|
@@ -3336,7 +3330,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3336
3330
|
border-bottom-color: var(--color-secondary-ds);
|
|
3337
3331
|
}
|
|
3338
3332
|
.counter-reset {
|
|
3339
|
-
counter-reset:
|
|
3333
|
+
counter-reset: cnt1721312162988;
|
|
3340
3334
|
}
|
|
3341
3335
|
.hyphens-auto {
|
|
3342
3336
|
-webkit-hyphens: auto;
|
|
@@ -3357,7 +3351,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3357
3351
|
/*! ****************************/
|
|
3358
3352
|
/*! Aspect Ratio with fallback */
|
|
3359
3353
|
/*! ****************************/
|
|
3360
|
-
.ar-auto,
|
|
3354
|
+
.ar-auto,
|
|
3355
|
+
.ar-auto > img {
|
|
3361
3356
|
aspect-ratio: auto;
|
|
3362
3357
|
}
|
|
3363
3358
|
@supports not (aspect-ratio: auto) {
|
|
@@ -3373,7 +3368,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3373
3368
|
clear: both;
|
|
3374
3369
|
}
|
|
3375
3370
|
}
|
|
3376
|
-
.ar-16-9,
|
|
3371
|
+
.ar-16-9,
|
|
3372
|
+
.ar-16-9 > img {
|
|
3377
3373
|
aspect-ratio: 16 / 9;
|
|
3378
3374
|
}
|
|
3379
3375
|
@supports not (aspect-ratio: 16 / 9) {
|
|
@@ -3389,7 +3385,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3389
3385
|
clear: both;
|
|
3390
3386
|
}
|
|
3391
3387
|
}
|
|
3392
|
-
.ar-16-7,
|
|
3388
|
+
.ar-16-7,
|
|
3389
|
+
.ar-16-7 > img {
|
|
3393
3390
|
aspect-ratio: 16 / 7;
|
|
3394
3391
|
}
|
|
3395
3392
|
@supports not (aspect-ratio: 16 / 7) {
|
|
@@ -3405,7 +3402,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3405
3402
|
clear: both;
|
|
3406
3403
|
}
|
|
3407
3404
|
}
|
|
3408
|
-
.ar-4-3,
|
|
3405
|
+
.ar-4-3,
|
|
3406
|
+
.ar-4-3 > img {
|
|
3409
3407
|
aspect-ratio: 4 / 3;
|
|
3410
3408
|
}
|
|
3411
3409
|
@supports not (aspect-ratio: 4 / 3) {
|
|
@@ -3421,7 +3419,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3421
3419
|
clear: both;
|
|
3422
3420
|
}
|
|
3423
3421
|
}
|
|
3424
|
-
.ar-4-1,
|
|
3422
|
+
.ar-4-1,
|
|
3423
|
+
.ar-4-1 > img {
|
|
3425
3424
|
aspect-ratio: 4 / 1;
|
|
3426
3425
|
}
|
|
3427
3426
|
@supports not (aspect-ratio: 4 / 1) {
|
|
@@ -3437,7 +3436,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3437
3436
|
clear: both;
|
|
3438
3437
|
}
|
|
3439
3438
|
}
|
|
3440
|
-
.ar-1-1,
|
|
3439
|
+
.ar-1-1,
|
|
3440
|
+
.ar-1-1 > img {
|
|
3441
3441
|
aspect-ratio: 1 / 1;
|
|
3442
3442
|
}
|
|
3443
3443
|
@supports not (aspect-ratio: 1 / 1) {
|
|
@@ -3453,7 +3453,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3453
3453
|
clear: both;
|
|
3454
3454
|
}
|
|
3455
3455
|
}
|
|
3456
|
-
.ar-100-27,
|
|
3456
|
+
.ar-100-27,
|
|
3457
|
+
.ar-100-27 > img {
|
|
3457
3458
|
aspect-ratio: 100 / 27.1;
|
|
3458
3459
|
}
|
|
3459
3460
|
@supports not (aspect-ratio: 100 / 27.1) {
|
|
@@ -3469,7 +3470,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3469
3470
|
clear: both;
|
|
3470
3471
|
}
|
|
3471
3472
|
}
|
|
3472
|
-
.ar-9-16,
|
|
3473
|
+
.ar-9-16,
|
|
3474
|
+
.ar-9-16 > img {
|
|
3473
3475
|
aspect-ratio: 9 / 16;
|
|
3474
3476
|
}
|
|
3475
3477
|
@supports not (aspect-ratio: 9 / 16) {
|
|
@@ -3485,7 +3487,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3485
3487
|
clear: both;
|
|
3486
3488
|
}
|
|
3487
3489
|
}
|
|
3488
|
-
.ar-7-16,
|
|
3490
|
+
.ar-7-16,
|
|
3491
|
+
.ar-7-16 > img {
|
|
3489
3492
|
aspect-ratio: 7 / 16;
|
|
3490
3493
|
}
|
|
3491
3494
|
@supports not (aspect-ratio: 7 / 16) {
|
|
@@ -3528,10 +3531,8 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3528
3531
|
grid-template-columns:
|
|
3529
3532
|
[full-width-start] minmax(var(--mobile-padding), var(--desktop-padding))
|
|
3530
3533
|
[content-start] minmax(0, var(--breakout-size))
|
|
3531
|
-
[narrow-start] min(
|
|
3532
|
-
|
|
3533
|
-
var(--narrow-max-width)
|
|
3534
|
-
) [narrow-end]
|
|
3534
|
+
[narrow-start] min(100% - (var(--mobile-padding) * 2), var(--narrow-max-width))
|
|
3535
|
+
[narrow-end]
|
|
3535
3536
|
minmax(0, var(--breakout-size)) [content-end]
|
|
3536
3537
|
minmax(var(--mobile-padding), var(--desktop-padding)) [full-width-end];
|
|
3537
3538
|
grid-column: main;
|
|
@@ -3542,7 +3543,10 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3542
3543
|
.article-full-width {
|
|
3543
3544
|
grid-column: full-width;
|
|
3544
3545
|
}
|
|
3545
|
-
.
|
|
3546
|
+
.article-narrow {
|
|
3547
|
+
grid-column: narrow;
|
|
3548
|
+
}
|
|
3549
|
+
.copytextWrapper > :not(.article-breakout):not(.article-full-width):not(.xs\:article-full-width) {
|
|
3546
3550
|
grid-column: narrow;
|
|
3547
3551
|
}
|
|
3548
3552
|
.grid-content {
|
|
@@ -3734,7 +3738,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3734
3738
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3735
3739
|
}
|
|
3736
3740
|
.-ordered {
|
|
3737
|
-
counter-increment:
|
|
3741
|
+
counter-increment: cnt1721312162988 1;
|
|
3738
3742
|
}
|
|
3739
3743
|
.-ordered::before {
|
|
3740
3744
|
position: absolute;
|
|
@@ -3750,7 +3754,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3750
3754
|
letter-spacing: .0125em;
|
|
3751
3755
|
--tw-text-opacity: 1;
|
|
3752
3756
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3753
|
-
content: counter(
|
|
3757
|
+
content: counter(cnt1721312162988);
|
|
3754
3758
|
}
|
|
3755
3759
|
/*! ****************************/
|
|
3756
3760
|
/*! DataPolicy stuff */
|
|
@@ -5848,6 +5852,11 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
5848
5852
|
}
|
|
5849
5853
|
@media (min-width: 360px) {
|
|
5850
5854
|
|
|
5855
|
+
.xs\:mx-13 {
|
|
5856
|
+
margin-left: 3.125rem;
|
|
5857
|
+
margin-right: 3.125rem;
|
|
5858
|
+
}
|
|
5859
|
+
|
|
5851
5860
|
.xs\:mx-6 {
|
|
5852
5861
|
margin-left: 1.5rem;
|
|
5853
5862
|
margin-right: 1.5rem;
|
|
@@ -5859,6 +5868,9 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
5859
5868
|
-webkit-box-orient: vertical;
|
|
5860
5869
|
-webkit-line-clamp: 5;
|
|
5861
5870
|
}
|
|
5871
|
+
.xs\:article-full-width {
|
|
5872
|
+
grid-column: full-width;
|
|
5873
|
+
}
|
|
5862
5874
|
}
|
|
5863
5875
|
@media (min-width: 480px) {
|
|
5864
5876
|
|
|
@@ -5872,14 +5884,6 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
5872
5884
|
margin-bottom: 1.25rem;
|
|
5873
5885
|
}
|
|
5874
5886
|
|
|
5875
|
-
.sm480\:mb-14 {
|
|
5876
|
-
margin-bottom: 3.5rem;
|
|
5877
|
-
}
|
|
5878
|
-
|
|
5879
|
-
.sm480\:mb-5 {
|
|
5880
|
-
margin-bottom: 1.25rem;
|
|
5881
|
-
}
|
|
5882
|
-
|
|
5883
5887
|
.sm480\:mb-7 {
|
|
5884
5888
|
margin-bottom: 1.75rem;
|
|
5885
5889
|
}
|
|
@@ -5908,18 +5912,10 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
5908
5912
|
margin-top: 1.375rem;
|
|
5909
5913
|
}
|
|
5910
5914
|
|
|
5911
|
-
.sm480\:mt-6 {
|
|
5912
|
-
margin-top: 1.5rem;
|
|
5913
|
-
}
|
|
5914
|
-
|
|
5915
5915
|
.sm480\:mt-7 {
|
|
5916
5916
|
margin-top: 1.75rem;
|
|
5917
5917
|
}
|
|
5918
5918
|
|
|
5919
|
-
.sm480\:mt-8 {
|
|
5920
|
-
margin-top: 2rem;
|
|
5921
|
-
}
|
|
5922
|
-
|
|
5923
5919
|
.sm480\:h-5 {
|
|
5924
5920
|
height: 1.25rem;
|
|
5925
5921
|
}
|
|
@@ -5932,10 +5928,6 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
5932
5928
|
height: 100%;
|
|
5933
5929
|
}
|
|
5934
5930
|
|
|
5935
|
-
.sm480\:w-2\/3 {
|
|
5936
|
-
width: 66.666667%;
|
|
5937
|
-
}
|
|
5938
|
-
|
|
5939
5931
|
.sm480\:w-5 {
|
|
5940
5932
|
width: 1.25rem;
|
|
5941
5933
|
}
|
|
@@ -6104,6 +6096,11 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
6104
6096
|
margin-right: 3.5rem;
|
|
6105
6097
|
}
|
|
6106
6098
|
|
|
6099
|
+
.sm\:mx-26 {
|
|
6100
|
+
margin-left: 6.5rem;
|
|
6101
|
+
margin-right: 6.5rem;
|
|
6102
|
+
}
|
|
6103
|
+
|
|
6107
6104
|
.sm\:mx-8 {
|
|
6108
6105
|
margin-left: 2rem;
|
|
6109
6106
|
margin-right: 2rem;
|
|
@@ -6136,22 +6133,34 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
6136
6133
|
margin-bottom: 2rem;
|
|
6137
6134
|
}
|
|
6138
6135
|
|
|
6139
|
-
.sm\:ml-
|
|
6140
|
-
margin-left:
|
|
6136
|
+
.sm\:ml-0 {
|
|
6137
|
+
margin-left: 0px;
|
|
6141
6138
|
}
|
|
6142
6139
|
|
|
6143
|
-
.sm\:ml-
|
|
6144
|
-
margin-left:
|
|
6140
|
+
.sm\:ml-4 {
|
|
6141
|
+
margin-left: 1rem;
|
|
6145
6142
|
}
|
|
6146
6143
|
|
|
6147
6144
|
.sm\:ml-8 {
|
|
6148
6145
|
margin-left: 2rem;
|
|
6149
6146
|
}
|
|
6150
6147
|
|
|
6148
|
+
.sm\:ml-\[1\.531rem\] {
|
|
6149
|
+
margin-left: 1.531rem;
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6151
6152
|
.sm\:mr-5 {
|
|
6152
6153
|
margin-right: 1.25rem;
|
|
6153
6154
|
}
|
|
6154
6155
|
|
|
6156
|
+
.sm\:mr-6 {
|
|
6157
|
+
margin-right: 1.5rem;
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6160
|
+
.sm\:mr-6\.5 {
|
|
6161
|
+
margin-right: 1.625rem;
|
|
6162
|
+
}
|
|
6163
|
+
|
|
6155
6164
|
.sm\:mt-1 {
|
|
6156
6165
|
margin-top: 0.25rem;
|
|
6157
6166
|
}
|
|
@@ -6164,10 +6173,22 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
6164
6173
|
margin-top: 3.5rem;
|
|
6165
6174
|
}
|
|
6166
6175
|
|
|
6176
|
+
.sm\:mt-5 {
|
|
6177
|
+
margin-top: 1.25rem;
|
|
6178
|
+
}
|
|
6179
|
+
|
|
6167
6180
|
.sm\:mt-6 {
|
|
6168
6181
|
margin-top: 1.5rem;
|
|
6169
6182
|
}
|
|
6170
6183
|
|
|
6184
|
+
.sm\:mt-7 {
|
|
6185
|
+
margin-top: 1.75rem;
|
|
6186
|
+
}
|
|
6187
|
+
|
|
6188
|
+
.sm\:mt-8 {
|
|
6189
|
+
margin-top: 2rem;
|
|
6190
|
+
}
|
|
6191
|
+
|
|
6171
6192
|
.sm\:block {
|
|
6172
6193
|
display: block;
|
|
6173
6194
|
}
|
|
@@ -6252,11 +6273,6 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
6252
6273
|
padding-right: 1rem;
|
|
6253
6274
|
}
|
|
6254
6275
|
|
|
6255
|
-
.sm\:px-6 {
|
|
6256
|
-
padding-left: 1.5rem;
|
|
6257
|
-
padding-right: 1.5rem;
|
|
6258
|
-
}
|
|
6259
|
-
|
|
6260
6276
|
.sm\:px-8 {
|
|
6261
6277
|
padding-left: 2rem;
|
|
6262
6278
|
padding-right: 2rem;
|
|
@@ -6285,14 +6301,22 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
6285
6301
|
padding-bottom: 0.5rem;
|
|
6286
6302
|
}
|
|
6287
6303
|
|
|
6288
|
-
.sm\:pb-9 {
|
|
6289
|
-
padding-bottom: 2.25rem;
|
|
6290
|
-
}
|
|
6291
|
-
|
|
6292
6304
|
.sm\:pl-0 {
|
|
6293
6305
|
padding-left: 0px;
|
|
6294
6306
|
}
|
|
6295
6307
|
|
|
6308
|
+
.sm\:pl-\[1\.531rem\] {
|
|
6309
|
+
padding-left: 1.531rem;
|
|
6310
|
+
}
|
|
6311
|
+
|
|
6312
|
+
.sm\:pr-6 {
|
|
6313
|
+
padding-right: 1.5rem;
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
.sm\:pr-6\.5 {
|
|
6317
|
+
padding-right: 1.625rem;
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6296
6320
|
.sm\:pt-0 {
|
|
6297
6321
|
padding-top: 0px;
|
|
6298
6322
|
}
|
|
@@ -7759,6 +7783,18 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
7759
7783
|
border-left-width: 1px;
|
|
7760
7784
|
}
|
|
7761
7785
|
}
|
|
7786
|
+
.\[\&\+\.hr-copytext-teaser-half\]\:mt-4+.hr-copytext-teaser-half {
|
|
7787
|
+
margin-top: 1rem;
|
|
7788
|
+
}
|
|
7789
|
+
@media (min-width: 640px) {
|
|
7790
|
+
|
|
7791
|
+
.sm\:\[\&\+\.hr-copytext-teaser-half\]\:mt-0+.hr-copytext-teaser-half {
|
|
7792
|
+
margin-top: 0px;
|
|
7793
|
+
}
|
|
7794
|
+
}
|
|
7795
|
+
.\[\&\+h2\]\:mt-4+h2 {
|
|
7796
|
+
margin-top: 1rem;
|
|
7797
|
+
}
|
|
7762
7798
|
.\[\&\:has\(\+\.-hideOnMobile\)\]\:order-1[\:has\(\%2B.-hideOnMobile\)] {
|
|
7763
7799
|
order: 1;
|
|
7764
7800
|
}
|
|
@@ -8,7 +8,7 @@ import { deleteCookie } from '../../generic/hrQuery.subfeature'
|
|
|
8
8
|
const DataPolicySettings = function (context) {
|
|
9
9
|
const { options } = context,
|
|
10
10
|
{ element: rootElement } = context,
|
|
11
|
-
container = hr$('#datapolicy-settings-dialog',document)[0],
|
|
11
|
+
container = hr$('#datapolicy-settings-dialog', document)[0],
|
|
12
12
|
dialog = new A11yDialog(container),
|
|
13
13
|
bodyElement = document.getElementsByTagName('html')[0],
|
|
14
14
|
settingsCookie = new SettingsCookie(),
|
|
@@ -17,7 +17,7 @@ const DataPolicySettings = function (context) {
|
|
|
17
17
|
toggleAllSwitch = hr$('.js-toggleSwitch-checkbox-all', container)[0],
|
|
18
18
|
providerTitle = hr$('.js-providerTitle', container)[0]
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
let isWebview = window.parent.document.documentElement.classList.contains('webview'),
|
|
21
21
|
appSettingsCookie = {},
|
|
22
22
|
dataDataPolicyCookie = {},
|
|
23
23
|
dataTrackingCookie = {},
|
|
@@ -25,20 +25,20 @@ const DataPolicySettings = function (context) {
|
|
|
25
25
|
|
|
26
26
|
//Überprüfung ob die alten Cookies zusammengeführt werden müssen
|
|
27
27
|
const checkForExistingCookies = function () {
|
|
28
|
-
if(getJSONCookie('datapolicy') || getJSONCookie('tracking')){
|
|
28
|
+
if (getJSONCookie('datapolicy') || getJSONCookie('tracking')) {
|
|
29
29
|
console.log("hessenschau bisher => Beide Cookies existieren")
|
|
30
30
|
deleteOldCookiesandTransferData()
|
|
31
31
|
}
|
|
32
|
-
else{
|
|
32
|
+
else {
|
|
33
33
|
console.log("hessenschau neu => nach der Löschung der beiden alten Cookies muß hier gelesen werden")
|
|
34
|
-
if(getJSONCookie('hrSettings')) {
|
|
34
|
+
if (getJSONCookie('hrSettings')) {
|
|
35
35
|
getAllToggleValuesFromSettings()
|
|
36
36
|
}
|
|
37
37
|
else {
|
|
38
38
|
console.log("hessenschau neu => wenn kein hrSettings erzeugt wurde")
|
|
39
|
-
let whitelist = ["agf","ati","ard_mediathek","arte_concert","arte_concert_new","datawrapper_cdn"]
|
|
39
|
+
let whitelist = ["agf", "ati", "ard_mediathek", "arte_concert", "arte_concert_new", "datawrapper_cdn"]
|
|
40
40
|
for (let i = 0; i < toggleSwitches.length; ++i) {
|
|
41
|
-
if(toggleSwitches[i].id == "agf" || toggleSwitches[i].id == "ati" || toggleSwitches[i].id == "ard_mediathek" || toggleSwitches[i].id == "arte_concert" || toggleSwitches[i].id == "arte_concert_new" || toggleSwitches[i].id == "datawrapper_cdn"){
|
|
41
|
+
if (toggleSwitches[i].id == "agf" || toggleSwitches[i].id == "ati" || toggleSwitches[i].id == "ard_mediathek" || toggleSwitches[i].id == "arte_concert" || toggleSwitches[i].id == "arte_concert_new" || toggleSwitches[i].id == "datawrapper_cdn") {
|
|
42
42
|
setCookieForSettings(toggleSwitches[i].id, true)
|
|
43
43
|
}
|
|
44
44
|
else {
|
|
@@ -54,7 +54,7 @@ const DataPolicySettings = function (context) {
|
|
|
54
54
|
const deleteOldCookiesandTransferData = function () {
|
|
55
55
|
dataDataPolicyCookie = getJSONCookie('datapolicy') || {}
|
|
56
56
|
dataTrackingCookie = getJSONCookie('tracking') || {}
|
|
57
|
-
let objMerge
|
|
57
|
+
let objMerge
|
|
58
58
|
// Beide bestehenden JSONs aus Tracking und Service werden zusammengeführt.
|
|
59
59
|
objMerge = JSON.stringify(dataTrackingCookie) + JSON.stringify(dataDataPolicyCookie);
|
|
60
60
|
objMerge = objMerge.replace(/\}\{/, ",");
|
|
@@ -92,10 +92,10 @@ const DataPolicySettings = function (context) {
|
|
|
92
92
|
let settingId
|
|
93
93
|
let settingState
|
|
94
94
|
for (let i = 0; i < toggleSwitches.length; ++i) {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
document.getElementById(toggleSwitches[i].id).checked = settingState
|
|
98
|
-
|
|
95
|
+
settingId = toggleSwitches[i].id
|
|
96
|
+
settingState = dataSettingsCookie.settingId
|
|
97
|
+
document.getElementById(toggleSwitches[i].id).checked = settingState
|
|
98
|
+
|
|
99
99
|
setAllToggleEventListeners(toggleSwitches[i])
|
|
100
100
|
initializeAllToggleEventListeners(i)
|
|
101
101
|
|
|
@@ -106,7 +106,7 @@ const DataPolicySettings = function (context) {
|
|
|
106
106
|
toggleSwitches[i].getAttribute('initial') == 'checked'
|
|
107
107
|
) {
|
|
108
108
|
toggleSwitches[i].checked = true
|
|
109
|
-
setCookieForSettings(toggleSwitches[i].id,toggleSwitches[i].checked)
|
|
109
|
+
setCookieForSettings(toggleSwitches[i].id, toggleSwitches[i].checked)
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
toggleAllSwitch.checked = allTogglesExternalServiceChecked()
|
|
@@ -192,23 +192,23 @@ const DataPolicySettings = function (context) {
|
|
|
192
192
|
readAppSettingsButtonCookie()
|
|
193
193
|
if (appSettingsCookie['hidePrivacySettingsButton'] === true) {
|
|
194
194
|
settingsButton.classList.add('hidden')
|
|
195
|
-
document.querySelectorAll('.js-settings-inner-button').forEach(function(jsSettingsButton) {
|
|
195
|
+
document.querySelectorAll('.js-settings-inner-button').forEach(function (jsSettingsButton) {
|
|
196
196
|
jsSettingsButton.classList.add('hidden')
|
|
197
197
|
});
|
|
198
|
-
document.querySelectorAll('.js-content-settings-button').forEach(function(jsContentSettingsButton) {
|
|
199
|
-
jsContentSettingsButton.style.display = 'none'
|
|
198
|
+
document.querySelectorAll('.js-content-settings-button').forEach(function (jsContentSettingsButton) {
|
|
199
|
+
jsContentSettingsButton.style.display = 'none'
|
|
200
200
|
});
|
|
201
201
|
} else {
|
|
202
202
|
settingsButton.classList.remove('hidden')
|
|
203
|
-
document.querySelectorAll('.js-settings-inner-button').forEach(function(jsSettingsButton) {
|
|
204
|
-
if(jsSettingsButton.classList.contains('hidden')) {
|
|
205
|
-
|
|
203
|
+
document.querySelectorAll('.js-settings-inner-button').forEach(function (jsSettingsButton) {
|
|
204
|
+
if (jsSettingsButton.classList.contains('hidden')) {
|
|
205
|
+
jsSettingsButton.classList.remove('hidden')
|
|
206
206
|
}
|
|
207
207
|
});
|
|
208
|
-
document.querySelectorAll('.js-content-settings-button').forEach(function(jsContentSettingsButton) {
|
|
209
|
-
if(!jsContentSettingsButton.classList.contains('hidden')){
|
|
210
|
-
|
|
211
|
-
}
|
|
208
|
+
document.querySelectorAll('.js-content-settings-button').forEach(function (jsContentSettingsButton) {
|
|
209
|
+
if (!jsContentSettingsButton.classList.contains('hidden')) {
|
|
210
|
+
jsContentSettingsButton.style.display = 'inline-block'
|
|
211
|
+
}
|
|
212
212
|
});
|
|
213
213
|
}
|
|
214
214
|
}
|
|
@@ -217,11 +217,11 @@ const DataPolicySettings = function (context) {
|
|
|
217
217
|
const onDialogShow = function (event) {
|
|
218
218
|
bodyElement.classList.add('optionOpen')
|
|
219
219
|
const opener = event.detail == null && event.detail.target.closest('[data-a11y-dialog-show]') ? event.detail.target.closest('[data-a11y-dialog-show]') : null
|
|
220
|
-
const pianoTracking = null != opener && undefined !== opener.dataset.pianoTracking ? JSON.parse(opener.dataset.pianoTracking) : {label:"Datenschutzerklärung"}
|
|
221
|
-
if(undefined !== pianoTracking.secondLevelId){
|
|
220
|
+
const pianoTracking = null != opener && undefined !== opener.dataset.pianoTracking ? JSON.parse(opener.dataset.pianoTracking) : { label: "Datenschutzerklärung" }
|
|
221
|
+
if (undefined !== pianoTracking.secondLevelId) {
|
|
222
222
|
console.log(pianoTracking)
|
|
223
223
|
uxAction('Einstellungsdialog geöffnet - ' + pianoTracking.label, pianoTracking.secondLevelId)
|
|
224
|
-
}else{
|
|
224
|
+
} else {
|
|
225
225
|
console.log(pianoTracking)
|
|
226
226
|
uxAction('Einstellungsdialog geöffnet - ' + pianoTracking.label)
|
|
227
227
|
}
|
|
@@ -247,14 +247,14 @@ const DataPolicySettings = function (context) {
|
|
|
247
247
|
)
|
|
248
248
|
return vars
|
|
249
249
|
}
|
|
250
|
-
|
|
250
|
+
|
|
251
251
|
// steuert die Darstellung des Buttons für die hs-App ///
|
|
252
252
|
showSettingsButton()
|
|
253
253
|
// Überprüfen ob die alten Cookies vorhanden sind
|
|
254
254
|
checkForExistingCookies()
|
|
255
255
|
initializeEventListeners()
|
|
256
256
|
shouldDialogBeOpendOnLoad()
|
|
257
|
-
|
|
257
|
+
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
export default DataPolicySettings
|
|
260
|
+
export default DataPolicySettings
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#if this.showFullSize.isTrue }}
|
|
2
|
-
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden clear-both article-full-width
|
|
2
|
+
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden clear-both article-full-width mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:article-narrow sm:my-14" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_audio_intro_sr" _a11yOutro-loca="story_audio_outro_sr" }}
|
|
3
3
|
{{else}}
|
|
4
|
-
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden article-full-width mt-12 mb-
|
|
4
|
+
{{> components/content/copytext/components/media/media_figure _addClass="hr-copytext-teaser-half print:hidden article-full-width mt-12 mb-8 sm:my-7 sm:article-narrow sm:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_audio_intro_sr" _a11yOutro-loca="story_audio_outro_sr" }}
|
|
5
5
|
{{/if}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#if this.showFullSize.isTrue }}
|
|
2
|
-
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden clear-both article-full-width
|
|
2
|
+
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden clear-both article-full-width mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:article-narrow sm:my-14" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_audio_event_livestream_intro_sr" _a11yOutro-loca="story_audio_event_livestream_outro_sr" }}
|
|
3
3
|
{{else}}
|
|
4
|
-
{{> components/content/copytext/components/media/media_figure _addClass="print:hidden article-full-width mt-12 mb-
|
|
4
|
+
{{> components/content/copytext/components/media/media_figure _addClass="hr-copytext-teaser-half print:hidden article-full-width mt-12 mb-8 sm:my-7 sm:article-narrow sm:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_audio_event_livestream_intro_sr" _a11yOutro-loca="story_audio_event_livestream_outro_sr" }}
|
|
5
5
|
{{/if}}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="{{#if this.paragraphProperties.[0].showFullSize }}mt-6 mb-2 sm480:mt-7 sm480:mb-7{{else}}mr-0 sm:mr-5 mb-2 sm:mb-5 mt-5 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
1
|
+
<div class="{{#if this.paragraphProperties.[0].showFullSize }}mt-6 mb-2 sm480:mt-7 sm480:mb-7{{else}}hr-copytext-teaser-half mr-0 sm:mr-5 mb-2 sm:mb-5 mt-5 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
2
|
{{> components/base/image/icon _icon="quotation" _addClass="sm:ml-4 mr-2 mt-px float-left text-gray-scorpion w-6 h-6 sm480:w-8 sm480:h-8 fill-current dark:fill-link-dark"}}
|
|
3
3
|
<span class="sr-only">{{loca "story_cite_intro_sr" }}</span>
|
|
4
4
|
<blockquote>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="
|
|
1
|
+
<div class="mx-1 sm:ml-[1.531rem] sm:mr-6.5 px-4 sm:pl-[1.531rem] sm:pr-6.5 border-l-[3px] border-gray-boulder overflow-auto {{#if _showFullsize}}[&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 clear-both mt-12 mb-8 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:mt-14 sm:mb-14 {{else}}hr-copytext-teaser-half mb-8 sm:mb-5 sm:mt-6 mt-12 w-full sm:w-1/2 sm:float-left{{/if}}">
|
|
2
2
|
{{~> @partial-block ~}}
|
|
3
3
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{{#if this.showPortrait.isTrue }}
|
|
2
2
|
{{#if this.showFullSize.isTrue }}
|
|
3
3
|
{{> components/content/copytext/components/image/figure
|
|
4
|
-
_cssClass="mt-12 mb-8
|
|
4
|
+
_cssClass="mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:my-14 clear-both article-full-width sm:article-narrow"
|
|
5
5
|
_cssClassCaption="mx-5 sm:mx-0"
|
|
6
6
|
_type="story"
|
|
7
7
|
_variant="100-copytext-portrait"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
_isWebview=_isWebview}}
|
|
10
10
|
{{else}}
|
|
11
11
|
{{> components/content/copytext/components/image/figure
|
|
12
|
-
_cssClass="mt-12 mb-8
|
|
12
|
+
_cssClass="hr-copytext-teaser-half mt-12 mb-8 sm:mt-6 sm:mb-5 sm480:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid"
|
|
13
13
|
_cssClassCaption="mx-5 sm:mx-0"
|
|
14
14
|
_type="story"
|
|
15
15
|
_variant="copytext-portrait"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
{{else}}
|
|
20
20
|
{{#if this.showFullSize.isTrue}}
|
|
21
21
|
{{> components/content/copytext/components/image/figure
|
|
22
|
-
_cssClass="mt-12 mb-8
|
|
22
|
+
_cssClass="mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:my-14 clear-both article-full-width sm:article-narrow"
|
|
23
23
|
_cssClassCaption="mx-5 sm:mx-0"
|
|
24
24
|
_type="story"
|
|
25
25
|
_variant="100-copytext"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
_isWebview=_isWebview}}
|
|
28
28
|
{{else}}
|
|
29
29
|
{{> components/content/copytext/components/image/figure
|
|
30
|
-
_cssClass="mt-12 mb-8
|
|
30
|
+
_cssClass="hr-copytext-teaser-half mt-12 mb-8 sm:mt-6 sm:mb-5 article-full-width sm:article-narrow sm:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid"
|
|
31
31
|
_cssClassCaption="mx-5 sm:mx-0"
|
|
32
32
|
_type="story"
|
|
33
33
|
_variant="copytext"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-4
|
|
2
|
+
<p class="mt-4 sm:mt-5 text-lg leading-normal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="pl-9 mt-4
|
|
5
|
+
<ul class="pl-9 mt-4 sm:mt-5 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="pl-9 mt-4
|
|
8
|
+
<ol class="pl-9 mt-4 sm:mt-5 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="{{#if this.showFullSize.isTrue }}clear-both mt-12 mb-8 sm:mt-14 sm:mb-14{{else}}sm:w-1/2 clear-both sm:float-left sm:mr-5 mt-12 mb-8 sm:mt-6 sm:mb-5{{/if}}">
|
|
1
|
+
<div class="{{#if this.showFullSize.isTrue }}clear-both [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 mt-12 mb-8 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:mt-14 sm:mb-14{{else}}hr-copytext-teaser-half sm:w-1/2 clear-both sm:float-left sm:mr-5 mt-12 mb-8 sm:mt-6 sm:mb-5{{/if}}">
|
|
2
2
|
{{> components/teaser/podcast/podcast _headlineTag="h3" _isCopytext=true }}
|
|
3
3
|
</div>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div class="w-
|
|
1
|
+
<div class="article-narrow w-auto [&+h2]:mt-4 xs:article-full-width xs:mx-13 {{#if this.showFullSize.isTrue }}hr-copytext-teaser-full clear-both mb-8 mt-12 sm:my-14 sm:mx-26 {{else}}hr-copytext-teaser-half sm:w-1/2 clear-both sm:float-left mt-12 mb-8 sm:mt-6 sm:mb-5 sm:mr-5 sm:ml-0{{/if}}">
|
|
2
2
|
{{> components/teaser/teaser_poster _isCopytext=true }}
|
|
3
3
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#if this.showFullSize.isTrue }}
|
|
2
|
-
{{> components/content/copytext/components/media/media_figure _fullSize=true _addClass="print:hidden clear-both article-full-width
|
|
2
|
+
{{> components/content/copytext/components/media/media_figure _fullSize=true _addClass="print:hidden clear-both article-full-width mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:article-narrow sm:my-14" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_video_intro_sr" _a11yOutro-loca="story_video_outro_sr" }}
|
|
3
3
|
{{else}}
|
|
4
|
-
{{> components/content/copytext/components/media/media_figure _fullSize=false _addClass="print:hidden article-full-width sm:article-narrow mt-12 mb-
|
|
4
|
+
{{> components/content/copytext/components/media/media_figure _fullSize=false _addClass="hr-copytext-teaser-half print:hidden article-full-width sm:article-narrow mt-12 mb-8 sm:my-7 sm:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_video_intro_sr" _a11yOutro-loca="story_video_outro_sr" }}
|
|
5
5
|
{{/if}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#if this.showFullSize.isTrue }}
|
|
2
|
-
{{> components/content/copytext/components/media/media_figure _fullSize=true _addClass="print:hidden clear-both article-full-width
|
|
2
|
+
{{> components/content/copytext/components/media/media_figure _fullSize=true _addClass="print:hidden clear-both article-full-width mt-12 mb-8 [&+h2]:mt-4 [&+.hr-copytext-teaser-half]:mt-4 sm:[&+.hr-copytext-teaser-half]:mt-0 sm:article-narrow sm:my-14" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_video_livestream_intro_sr" _a11yOutro-loca="story_video_livestream_outro_sr" }}
|
|
3
3
|
{{else}}
|
|
4
|
-
{{> components/content/copytext/components/media/media_figure _fullSize=false _addClass="print:hidden article-full-width sm:article-narrow mt-12 mb-
|
|
4
|
+
{{> components/content/copytext/components/media/media_figure _fullSize=false _addClass="hr-copytext-teaser-half print:hidden article-full-width sm:article-narrow mt-12 mb-8 sm:my-7 sm:mr-5 sm:w-1/2 w-auto flex-col float-none sm:float-left break-inside-avoid page-break-inside-avoid" _cssClassCaption="mx-5 sm:mx-0" _a11yIntro-loca="story_video_livestream_intro_sr" _a11yOutro-loca="story_video_livestream_outro_sr" }}
|
|
5
5
|
{{/if}}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{#unless this.hideMetadatabox}}
|
|
2
|
-
<aside class="clear-both mt-
|
|
2
|
+
<aside class="clear-both mt-4 border-y border-gray-scorpion dark:border-text-dark sm:mt-5">
|
|
3
3
|
<div class="flex clear-both w-full my-4 sm:my-4">
|
|
4
4
|
<div class="self-center">
|
|
5
5
|
{{> components/page/components/author _hideFrom=false }}
|