playground: status counter sits under run+cancel instead of far right
This commit is contained in:
parent
988c7cbec7
commit
dc05491899
3 changed files with 24 additions and 6 deletions
|
|
@ -133,7 +133,8 @@ header code {
|
|||
border-bottom: 1px solid var(--rule);
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto auto 1fr;
|
||||
gap: 1rem;
|
||||
grid-template-rows: auto auto;
|
||||
gap: 0.3rem 1rem;
|
||||
align-items: center;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
|
@ -194,9 +195,14 @@ header code {
|
|||
}
|
||||
|
||||
.controls .status {
|
||||
/* Tuck the live ms counter directly under the run + cancel buttons
|
||||
* (columns 3-4 in the controls grid) so the eye finds the elapsed
|
||||
* timer next to the action that started it. */
|
||||
grid-column: 3 / span 2;
|
||||
grid-row: 2;
|
||||
justify-self: start;
|
||||
color: var(--muted);
|
||||
font-size: 0.8em;
|
||||
justify-self: end;
|
||||
}
|
||||
.controls .status.busy { color: var(--busy); }
|
||||
.controls .status.warn { color: var(--busy); }
|
||||
|
|
|
|||
|
|
@ -133,7 +133,8 @@ header code {
|
|||
border-bottom: 1px solid var(--rule);
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto auto 1fr;
|
||||
gap: 1rem;
|
||||
grid-template-rows: auto auto;
|
||||
gap: 0.3rem 1rem;
|
||||
align-items: center;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
|
@ -194,9 +195,14 @@ header code {
|
|||
}
|
||||
|
||||
.controls .status {
|
||||
/* Tuck the live ms counter directly under the run + cancel buttons
|
||||
* (columns 3-4 in the controls grid) so the eye finds the elapsed
|
||||
* timer next to the action that started it. */
|
||||
grid-column: 3 / span 2;
|
||||
grid-row: 2;
|
||||
justify-self: start;
|
||||
color: var(--muted);
|
||||
font-size: 0.8em;
|
||||
justify-self: end;
|
||||
}
|
||||
.controls .status.busy { color: var(--busy); }
|
||||
.controls .status.warn { color: var(--busy); }
|
||||
|
|
|
|||
|
|
@ -133,7 +133,8 @@ header code {
|
|||
border-bottom: 1px solid var(--rule);
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto auto 1fr;
|
||||
gap: 1rem;
|
||||
grid-template-rows: auto auto;
|
||||
gap: 0.3rem 1rem;
|
||||
align-items: center;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
|
@ -194,9 +195,14 @@ header code {
|
|||
}
|
||||
|
||||
.controls .status {
|
||||
/* Tuck the live ms counter directly under the run + cancel buttons
|
||||
* (columns 3-4 in the controls grid) so the eye finds the elapsed
|
||||
* timer next to the action that started it. */
|
||||
grid-column: 3 / span 2;
|
||||
grid-row: 2;
|
||||
justify-self: start;
|
||||
color: var(--muted);
|
||||
font-size: 0.8em;
|
||||
justify-self: end;
|
||||
}
|
||||
.controls .status.busy { color: var(--busy); }
|
||||
.controls .status.warn { color: var(--busy); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue