From 4f67d8dd1d697b704af6fe1a2b9b85c7e893c946 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Tue, 19 Dec 2023 02:12:20 +0100 Subject: 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. --- webAO/styles/speen.css | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) (limited to 'webAO/styles/speen.css') diff --git a/webAO/styles/speen.css b/webAO/styles/speen.css index e71ba05..f1677bb 100644 --- a/webAO/styles/speen.css +++ b/webAO/styles/speen.css @@ -3,7 +3,7 @@ body { } div * { - font-family: "Comic Sans MS" , Sans-Serif !important; + font-family: "Comic Sans MS", Sans-Serif !important; } img { @@ -74,21 +74,6 @@ button:hover { box-shadow: 1px 1px inset; } -.objection_button { - margin: 1px; - padding: 7px 15px; - cursor: pointer; - text-align: center; - font-weight: bold; - color: white; - background-color: #7b2900; - border-radius: 3px; - border-style: solid; - border-width: 1px; - border-color: #fff; - box-shadow: 1px 1px inset; -} - .evi_icon { width: 70px; min-width: 70px; @@ -135,4 +120,4 @@ button:hover { display: inline-block; transition: 1s linear; transition-property: width; -} \ No newline at end of file +} -- cgit