diff options
| -rw-r--r-- | webAO/client.js | 4 | ||||
| -rw-r--r-- | webAO/styles/chatbox/chatboxes.js | 2 | ||||
| -rw-r--r-- | webAO/styles/chatbox/legacy.css (renamed from webAO/styles/chatbox/default.css) | 5 |
3 files changed, 6 insertions, 5 deletions
diff --git a/webAO/client.js b/webAO/client.js index c97c136..120936d 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -672,7 +672,7 @@ class Client extends EventEmitter { showname: chargs[0], side: "def", gender: "male", - chat: "default" + chat: "aa" }; cini.options = Object.assign(default_options, cini.options); @@ -1654,7 +1654,7 @@ async changeBackground(position) { if (chatbox_arr.includes(chatmsg.chatbox)) { chatbox_theme.href = "styles/chatbox/" + chatmsg.chatbox + ".css"; } else { - chatbox_theme.href = "styles/chatbox/default.css"; + chatbox_theme.href = "styles/chatbox/aa.css"; } // Flip the character diff --git a/webAO/styles/chatbox/chatboxes.js b/webAO/styles/chatbox/chatboxes.js index 8010b7f..01deaa1 100644 --- a/webAO/styles/chatbox/chatboxes.js +++ b/webAO/styles/chatbox/chatboxes.js @@ -1,9 +1,9 @@ export default [ "aa", "chatdd", - "default", "dgs", "drae", + "legacy", "triology", "yttd" ];
\ No newline at end of file diff --git a/webAO/styles/chatbox/default.css b/webAO/styles/chatbox/legacy.css index 4c99ebb..111bcf6 100644 --- a/webAO/styles/chatbox/default.css +++ b/webAO/styles/chatbox/legacy.css @@ -11,11 +11,12 @@ position: absolute; top: 0; left: 0; - height: 15%; + height: 16%; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 3px; background: rgba(73, 0, 254, 0.5); padding: 0px 6px; + z-index: 1; } #client_chat { @@ -25,7 +26,7 @@ left: 0; width: 98%; width: calc(100% - 4px); - height: 82%; + height: 80%; border: 2px solid rgba(255, 255, 255, 0.7); border-radius: 4px; background-color: rgba(0, 0, 0, 0.5); |
