aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2023-12-19 02:12:20 +0100
committerDavid Skoland <davidskoland@gmail.com>2023-12-19 02:13:55 +0100
commit4f67d8dd1d697b704af6fe1a2b9b85c7e893c946 (patch)
treec06aedbaec9b580005794d5f42a6e1f8fca685c4 /public
parent43074242c8278af037fb04f7a8dee7f7521272ce (diff)
Use client_button instead of objection_button
Currently, we use objection_button class for the shouts, but the toggleShout function actually changes it to client_button instead. This makes it change style (height) whenever it is pressed. We can fix this by just using client_button. That makes it look more like the rest of the buttons as well. Since we don't use objection_button anymore, remove it from the styles.
Diffstat (limited to 'public')
-rw-r--r--public/client.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/public/client.html b/public/client.html
index 79e3080..d8de174 100644
--- a/public/client.html
+++ b/public/client.html
@@ -187,13 +187,13 @@
<br>
<div id="character_options">
<div id="emote_options">
- <button id="button_1" alt="Hold it!" class="objection_button" onclick="toggleShout(1)">Hold
+ <button id="button_1" alt="Hold it!" class="client_button" onclick="toggleShout(1)">Hold
it!</button>
- <button id="button_2" alt="Objection!" class="objection_button"
+ <button id="button_2" alt="Objection!" class="client_button"
onclick="toggleShout(2)">Objection!</button>
- <button id="button_3" alt="Take That!" class="objection_button" onclick="toggleShout(3)">Take
+ <button id="button_3" alt="Take That!" class="client_button" onclick="toggleShout(3)">Take
That!</button>
- <button id="button_4" alt="Custom" class="objection_button" onclick="toggleShout(4)"
+ <button id="button_4" alt="Custom" class="client_button" onclick="toggleShout(4)"
style="display: none">
Custom</button>
<br>