diff options
| author | David Skoland <davidskoland@gmail.com> | 2023-12-19 02:12:20 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2023-12-19 02:13:55 +0100 |
| commit | 4f67d8dd1d697b704af6fe1a2b9b85c7e893c946 (patch) | |
| tree | c06aedbaec9b580005794d5f42a6e1f8fca685c4 /webAO/styles/speen.css | |
| parent | 43074242c8278af037fb04f7a8dee7f7521272ce (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 'webAO/styles/speen.css')
| -rw-r--r-- | webAO/styles/speen.css | 19 |
1 files changed, 2 insertions, 17 deletions
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 +} |
