aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles/soj.css
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 /webAO/styles/soj.css
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 'webAO/styles/soj.css')
-rw-r--r--webAO/styles/soj.css29
1 files changed, 8 insertions, 21 deletions
diff --git a/webAO/styles/soj.css b/webAO/styles/soj.css
index ffc3b42..9e277c4 100644
--- a/webAO/styles/soj.css
+++ b/webAO/styles/soj.css
@@ -36,19 +36,6 @@ body {
outline-offset: -1px;
}
-.objection_button {
- margin: 1px;
- padding: 2px 15px;
- cursor: pointer;
- text-align: center;
- font-weight: bold;
- color: #fff;
- background: linear-gradient(to bottom, #6b3c10, #422008);
- border: 1px solid #211408;
- outline: 1px solid #846129;
- outline-offset: -1px;
-}
-
#client_log {
position: relative;
height: 100%;
@@ -58,14 +45,14 @@ body {
overflow-wrap: break-word;
overflow-y: auto;
font-size: medium;
- background-color: rgba(0,0,0,0.8);
+ background-color: rgba(0, 0, 0, 0.8);
text-align: start;
line-height: .85em;
}
#client_log>p {
line-height: 1.1em;
- border-top: 1px solid rgba(255,255,255,0.2);
+ border-top: 1px solid rgba(255, 255, 255, 0.2);
border-bottom: 1px solid #000;
}
@@ -73,11 +60,11 @@ body {
font-weight: initial;
padding-right: .35em;
text-shadow:
- 0 0 3px #39307b,
- -1px -1px 0 #39307b,
- 1px -1px 0 #39307b,
- -1px 1px 0 #39307b,
- 1px 1px 0 #39307b;
+ 0 0 3px #39307b,
+ -1px -1px 0 #39307b,
+ 1px -1px 0 #39307b,
+ -1px 1px 0 #39307b,
+ 1px 1px 0 #39307b;
}
.iclog_text::before {
@@ -127,4 +114,4 @@ body {
display: inline-block;
transition: 1s linear;
transition-property: width;
-} \ No newline at end of file
+}