Compare commits

...

2 commits

Author SHA1 Message Date
Gwen Tripet-Costet
0c65edc15a Bump to 1.28.14 2025-09-22 12:34:09 +02:00
Oliver Tacke
64fb190c3b
VA-1213 Tweak CSS (#370)
- Add inline padding to result list items
- Right-align time codes of result list items
2025-09-22 12:33:47 +02:00
2 changed files with 6 additions and 3 deletions

View file

@ -5,7 +5,7 @@
"contentType": "Media",
"majorVersion": 1,
"minorVersion": 28,
"patchVersion": 12,
"patchVersion": 14,
"machineName": "H5P.InteractiveVideo",
"author": "Joubel",
"embedTypes": [

View file

@ -28,6 +28,7 @@

.h5p-interactive-video-endscreen .h5p-theme-results-question {
display: flex;
gap: var(--h5p-theme-spacing-s);
}

.h5p-interactive-video .h5p-interactive-video-endscreen {
@ -66,8 +67,6 @@ button.h5p-theme-close:before {
color: var(--h5p-theme-contrast-cta-white);
display: inline-block;
font-size: var(--h5p-theme-font-size-m);
margin-right: var(--h5p-theme-spacing-s);
text-align: right;
width: var(--h5p-theme-endscreen-time-width, 7ch); /* fallback sufficent for h:mm:ss */
}

@ -92,6 +91,10 @@ button.h5p-theme-close:before {
text-align: center;
}

.h5p-theme-results-list-item {
padding-inline: var(--h5p-theme-spacing-m);
}

.h5p-theme-results-list-item.is-jump-button:not(.is-skipping-prevented) {
cursor: pointer;
}