diff --git a/extensions/pi-remote-control/html.ts b/extensions/pi-remote-control/html.ts index 8a54a89..29d2960 100644 --- a/extensions/pi-remote-control/html.ts +++ b/extensions/pi-remote-control/html.ts @@ -341,6 +341,11 @@ return /* html */ ` color: #fff; } #send-btn.ready:active { transform: scale(0.9); } + #send-btn.stop { + background: var(--tool-err); + color: #fff; + } + #send-btn.stop:active { transform: scale(0.9); } #send-btn:disabled { background: var(--border); color: var(--muted); @@ -352,6 +357,15 @@ return /* html */ ` height: 20px; fill: currentColor; } + #send-btn .icon-stop { + display: none; + width: 14px; + height: 14px; + background: #fff; + border-radius: 2px; + } + #send-btn.stop svg { display: none; } + #send-btn.stop .icon-stop { display: block; } #messages::-webkit-scrollbar { width: 6px; } #messages::-webkit-scrollbar-track { background: transparent; } @@ -369,7 +383,7 @@ return /* html */ `