Small fixes

- Play button hovering in low-width windows matches the look in high-width windows
- Fix poster image not showing up in high-width windows when using title_simple-logo (for title pages)
This commit is contained in:
trynan
2022-06-19 22:24:42 -07:00
parent 08b179a7d7
commit f35a93618b
2 changed files with 15 additions and 2 deletions

View File

@@ -77,12 +77,19 @@ div[data-role="controlgroup"] a[data-role="button"] {
background-color: rgba(0, 0, 0, 0.7);
}
}
/* Play button hovering (for low width windows) */
@media all and (max-width: 70em){
.cardOverlayFab-primary {
background-color: #00000000;
}
.cardOverlayButtonIcon {
background-color: rgba(0, 0, 0, 0.5) !important;
background-color: #00000000 !important;
}
.cardOverlayContainer {
background-color: rgba(0, 0, 0, 0.7);
}
.cardOverlayButton {
padding: 0.5em;
padding: 0.25em;
}
}

View File

@@ -17,6 +17,12 @@
.layout-desktop .detailRibbon {
background: rgba(0,0,0,0) !important;
}
/* Fix poster image not showing in high width windows */
.layout-desktop .detailImageContainer .card {
top: 18vh;
}
@media all and (min-width: 32em){
.itemBackdrop {
display: none;