Better feedback on button clicks
This commit is contained in:
2
main.go
2
main.go
@@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user