mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 02:29:59 +00:00
Fix live indicator styling for seekable live media
This commit is contained in:
@@ -194,12 +194,14 @@ body {
|
|||||||
.media__seek {
|
.media__seek {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 10px;
|
grid-template-columns: min-content auto 1fr auto;
|
||||||
grid-template-columns: auto 1fr auto;
|
grid-template-areas: "live current-time seek-bar remaining-time";
|
||||||
grid-template-areas: "current-time seek-bar remaining-time";
|
|
||||||
min-height: 24px;
|
min-height: 24px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.media__seek > :not(:last-child) {
|
||||||
|
margin-inline-end: 10px;
|
||||||
|
}
|
||||||
.media__seek-bar {
|
.media__seek-bar {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
grid-area: seek-bar;
|
grid-area: seek-bar;
|
||||||
@@ -255,6 +257,7 @@ body {
|
|||||||
color: var(--box-background);
|
color: var(--box-background);
|
||||||
font-size: 0.85em;
|
font-size: 0.85em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
grid-area: live;
|
||||||
opacity: 0.75;
|
opacity: 0.75;
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|||||||
Reference in New Issue
Block a user