From 5474f29f2dc85c0821e3b77783d1066d30088c35 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Wed, 23 Aug 2023 16:19:54 +0900 Subject: [PATCH] bottom bar 40px to 30px --- public/scripts/RossAscends-mods.js | 2 +- public/style.css | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/public/scripts/RossAscends-mods.js b/public/scripts/RossAscends-mods.js index 1f7cdcfe9..ea5b3d320 100644 --- a/public/scripts/RossAscends-mods.js +++ b/public/scripts/RossAscends-mods.js @@ -841,7 +841,7 @@ jQuery(async function () { //this makes the chat input text area resize vertically to match the text size (limited by CSS at 50% window height) $('#send_textarea').on('input', function () { - this.style.height = '40px'; + this.style.height = '30px'; this.style.height = (this.scrollHeight) + 'px'; }); diff --git a/public/style.css b/public/style.css index a69baa51d..736eddb09 100644 --- a/public/style.css +++ b/public/style.css @@ -509,19 +509,19 @@ hr { #send_but_sheld { padding: 0; border: 0; - height: 40px; + height: 30px; position: relative; background-position: center; display: flex; flex-direction: row; column-gap: 5px; - font-size: 30px; + font-size: 25px; overflow: hidden; } #send_but_sheld>div { - width: 40px; - height: 40px; + width: 30px; + height: 30px; margin: 0; outline: none; border: none; @@ -549,8 +549,8 @@ hr { } #options_button { - width: 40px; - height: 40px; + width: 30px; + height: 30px; margin: 0; outline: none; border: none; @@ -558,10 +558,10 @@ hr { opacity: 0.7; cursor: pointer; z-index: 2001; - padding-left: 10px; - padding-top: 0; + margin-left: 10px; + padding: 0; transition: 0.3s; - font-size: 30px; + font-size: 25px; display: flex; align-items: center; } @@ -872,17 +872,17 @@ select { } #send_textarea { - min-height: 40px; + min-height: 30px; max-height: 50vh; max-height: 50svh; word-wrap: break-word; - height: 40px; + height: 30px; resize: vertical; display: block; background-color: rgba(255, 0, 0, 0); border: 0; box-shadow: none; - padding: 6px; + padding: 0; font-family: "Noto Sans", "Noto Color Emoji", sans-serif; margin: 0; text-shadow: 0px 0px calc(var(--shadowWidth) * 1px) var(--SmartThemeShadowColor); @@ -3506,4 +3506,4 @@ a { z-index: 10; margin-left: 10px; /* Give some space between the button and search box */ -} +} \ No newline at end of file