mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
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.
This commit is contained in:
@ -1 +1 @@
|
||||
#bg1 {background-image: url(../backgrounds/theredlake.png);}
|
||||
#bg1 {background-image: url(../backgrounds/warmtown.png);}
|
@ -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");
|
||||
|
||||
}
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user