Spaces:
Sleeping
Sleeping
File size: 2,524 Bytes
8e6c6e4 c865cd8 8e6c6e4 c865cd8 8e6c6e4 e11f6a9 8e6c6e4 c865cd8 8e6c6e4 e11f6a9 8e6c6e4 c865cd8 8e6c6e4 e11f6a9 8e6c6e4 e11f6a9 8e6c6e4 e11f6a9 8e6c6e4 e11f6a9 8e6c6e4 c865cd8 8e6c6e4 c865cd8 8e6c6e4 e11f6a9 8e6c6e4 e11f6a9 8e6c6e4 e11f6a9 8e6c6e4 c865cd8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | .statusWrap {
display: flex;
align-items: center;
gap: 6px;
}
.statusDot {
width: 6px;
height: 6px;
border-radius: 50%;
display: inline-block;
flex-shrink: 0;
}
.statusGreen {
background: var(--nx-green);
}
.statusAmber {
background: var(--nx-yellow);
}
.statusRed {
background: var(--nx-red);
}
.statusPulse {
animation: statusPulseAnim 2s ease-in-out infinite;
}
@keyframes statusPulseAnim {
0%,
100% {
opacity: 1;
box-shadow: 0 0 0 0 currentColor;
}
50% {
opacity: 0.6;
box-shadow: 0 0 6px 2px currentColor;
}
}
.statusLabel {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--nx-text-dim);
}
/* ββ Replay Controls βββββββββββββββββββββββββββ */
.replayBar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 6px 12px;
background: var(--nx-surface);
border: 1px solid var(--nx-border);
border-radius: 2px;
width: 100%;
max-width: 600px;
}
.replayGroup,
.replayGroupCenter,
.replayGroupRight {
display: flex;
align-items: center;
gap: 8px;
}
.replayGroup {
flex: 1;
/* Match the space taken by scrubber so center is geometrically true */
}
.replayGroupCenter {
gap: 12px;
justify-content: center;
}
.replayGroupRight {
flex: 1;
justify-content: flex-end;
}
.replayBtn {
font-family: var(--nx-font, 'JetBrains Mono', monospace);
font-size: 10px;
padding: 3px 8px;
border: 1px solid var(--nx-border);
border-radius: 2px;
background: transparent;
color: var(--nx-text-dim);
cursor: pointer;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.replayBtn:hover {
border-color: var(--nx-orange);
color: var(--nx-orange);
}
.replayBtnActive {
border-color: var(--nx-orange);
color: var(--nx-orange);
background: var(--nx-orange-glow2);
}
.replayPlayBtn {
font-size: 14px;
padding: 4px 12px;
}
.replayScrubber {
width: 120px;
/* Don't flex 1 here, let it be fixed size so it looks neat */
height: 3px;
appearance: none;
background: var(--nx-border);
border-radius: 2px;
outline: none;
cursor: pointer;
}
.replayScrubber::-webkit-slider-thumb {
appearance: none;
width: 10px;
height: 10px;
border-radius: 2px;
background: var(--nx-orange);
cursor: pointer;
}
.replayStep {
font-size: 10px;
color: var(--nx-text-dim);
font-variant-numeric: tabular-nums;
min-width: 48px;
text-align: right;
} |