diff --git a/main.go b/main.go index 590f4f0..d4cefd6 100644 --- a/main.go +++ b/main.go @@ -558,7 +558,7 @@ func (rm *room) sendAdminEvent(ae *adminEvent) { } func (rm *room) sendControlEvent(ce *controlEvent) { - for present, _ := range rm.present { + for present := range rm.present { present <- ce } } diff --git a/static/remote.css b/static/remote.css index 9e3a474..c271a3e 100644 --- a/static/remote.css +++ b/static/remote.css @@ -70,8 +70,8 @@ tfoot tr { user-select: none; } -.control-button:active { - background: var(--subtle-color); +.controls.enable .control-button:active { + background: var(--highlight-color); transition: none; }