From 5d38f57292cd42f68c9eb406b107b455340812d9 Mon Sep 17 00:00:00 2001 From: RossAsscends <124905043+RossAscends@users.noreply.github.com> Date: Sun, 26 Feb 2023 21:30:33 +0900 Subject: [PATCH] menu btn color and character_popup changes charcter_popup set to cover all main sheld elements for ease of use and to limit user errors (using the chat input box while having the character's advanced defs popup open) removed forced coloring from popup menu buttons. --- public/css/bg_load.css | 2 +- public/index.html | 6 +++--- public/style.css | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/public/css/bg_load.css b/public/css/bg_load.css index cfdd06498..7d45eec35 100644 --- a/public/css/bg_load.css +++ b/public/css/bg_load.css @@ -1 +1 @@ -#bg1 {background-image: url(../backgrounds/theredlake.png);} \ No newline at end of file +#bg1 {background-image: url(../backgrounds/warmtown.png);} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 540340dda..84a52fbc9 100644 --- a/public/index.html +++ b/public/index.html @@ -1582,18 +1582,18 @@ switch(popup_type){ case 'char_not_selected': - $("#dialogue_popup_ok").css("background-color", "#191b31CC"); + $("#dialogue_popup_ok").text("Ok"); $("#dialogue_popup_cancel").css("display", "none"); break; case 'new_chat': - $("#dialogue_popup_ok").css("background-color", "#191b31CC"); + $("#dialogue_popup_ok").text("Yes"); break; default: - $("#dialogue_popup_ok").css("background-color", "#791b31"); + $("#dialogue_popup_ok").text("Delete"); } diff --git a/public/style.css b/public/style.css index a7a0f05ad..164b7ba68 100644 --- a/public/style.css +++ b/public/style.css @@ -1530,8 +1530,8 @@ label.checkbox :checked + span:after { backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(50px); grid-template-rows: 50px 100px 100px 40px auto 45px 45px; - max-width: 802px; /* 802 instead of 800 to cover #chat's scrollbars entirely */ - height: 90vh; /* imperfect calculation designed to match the chat height, which is auto-set to (100% - form_sheld height) */ + max-width: 800px; + height: calc(100vh - 50px); position: absolute; z-index: 2065; margin-left: auto; @@ -1542,7 +1542,7 @@ label.checkbox :checked + span:after { box-shadow: 0 0 2px rgb(0 0 0 / 50%); padding: 4px; border: 1px solid rgba(0,0,0,0.3); - /*border-radius: 0 0 40px 40px;*/ + border-radius: 0 0 40px 40px; } #character_popup h5 a{ color: #936f4a;