Better feedback on button clicks

This commit is contained in:
Ian Gulliver
2021-06-11 16:40:37 +00:00
parent 55b2412a8a
commit ed011c5e6c
2 changed files with 3 additions and 3 deletions

View File

@@ -558,7 +558,7 @@ func (rm *room) sendAdminEvent(ae *adminEvent) {
} }
func (rm *room) sendControlEvent(ce *controlEvent) { func (rm *room) sendControlEvent(ce *controlEvent) {
for present, _ := range rm.present { for present := range rm.present {
present <- ce present <- ce
} }
} }

View File

@@ -70,8 +70,8 @@ tfoot tr {
user-select: none; user-select: none;
} }
.control-button:active { .controls.enable .control-button:active {
background: var(--subtle-color); background: var(--highlight-color);
transition: none; transition: none;
} }