commit 5462b0c17fb3b100aeaab9dc41dd243f08c7ac17 parent 516b4a070598610046cf97ca7c8e1c6decec8806 Author: RobinLinus <robinlinus@users.noreply.github.com> Date: Mon, 28 Dec 2020 02:39:44 +0100 Cleanup stylename Diffstat:
M | client/index.html | | | 2 | +- |
M | client/styles.css | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/client/index.html b/client/index.html @@ -94,7 +94,7 @@ <x-background class="full center"> <x-paper shadow="2"> <h3>Send a Message</h3> - <div id="textInput" class="textareaElement" role="textbox" placeholder="Send a message" autocomplete="off" autofocus contenteditable></div> + <div id="textInput" class="textarea" role="textbox" placeholder="Send a message" autocomplete="off" autofocus contenteditable></div> <div class="row-reverse"> <button class="button" type="submit" close>Send</button> <a class="button" close>Cancel</a> diff --git a/client/styles.css b/client/styles.css @@ -479,7 +479,7 @@ button::-moz-focus-inner { /* Text Input */ -.textareaElement { +.textarea { box-sizing: border-box; border: none; outline: none; @@ -712,7 +712,7 @@ x-dialog x-paper { background-color: var(--bg-color); } -.textareaElement { +.textarea { color: var(--text-color); background-color: var(--bg-color-secondary); }