We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e05e381 commit 7273d52Copy full SHA for 7273d52
src/Legend.tsx
@@ -158,7 +158,7 @@ export function Legend({
158
</label>
159
<button
160
disabled={!config?.monitorUISettings?.connected}
161
- className="pause-button"
+ className={`pause-button ${pause ? "paused" : ""}`}
162
title={
163
config?.monitorUISettings?.connected
164
? undefined
src/index.scss
@@ -228,6 +228,14 @@ body {
228
text-align: center;
229
}
230
231
+ .pause-button:not(.paused) {
232
+ background-color: $notifyerror;
233
+
234
+ &:hover {
235
+ background-color: darken($notifyerror, 10);
236
+ }
237
238
239
.clear-button {
240
border: none;
241
background: none;
0 commit comments