Fix: Simplified the way borders are drawn in the media credits table

This eliminates the brief flash of a horizontal line visible when opening a media or cast page on older browsers
Fix: Removed the negative bottom margin I added earlier on plot container to avoid overlaps
This commit is contained in:
lscambo13
2025-08-22 12:52:35 -07:00
parent 07fcd74ccd
commit e47b7813cf

View File

@@ -1679,26 +1679,10 @@ progress+span {
outline: none; outline: none;
overflow: hidden; overflow: hidden;
margin-top: 1em; margin-top: 1em;
border: var(--defaultBorder);
border-radius: var(--smallRadius); border-radius: var(--smallRadius);
background-color: var(--lighterGradientPointAlpha); background-color: var(--lighterGradientPointAlpha);
} border: none;
box-shadow: inset 0 0 0 .06em var(--borderColor) !important;
@supports(display:revert) {
.itemDetailsGroup {
outline: var(--defaultBorder);
outline-offset: calc(-1 * var(--borderWidth));
border: none;
}
/* this somehow fixes border overflow on mobile */
.layout-mobile .itemDetailsGroup {
outline-offset: calc(-1 * var(--borderWidthDouble));
}
}
.itemDetailsGroup>div:not(:last-child) {
border-bottom: var(--defaultBorder);
} }
.detailsGroupItem { .detailsGroupItem {
@@ -1706,6 +1690,7 @@ progress+span {
justify-content: space-between; justify-content: space-between;
padding: .5em .9em; padding: .5em .9em;
align-items: baseline; align-items: baseline;
border-bottom: var(--defaultBorder);
} }
.detailsGroupItem>.label { .detailsGroupItem>.label {
@@ -1818,7 +1803,6 @@ progress+span {
.layout-tv .detail-clamp-text { .layout-tv .detail-clamp-text {
-webkit-line-clamp: 10; -webkit-line-clamp: 10;
margin-bottom: -1.5em;
transition: none; transition: none;
} }