mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
CSS fix for movingUI handle + less round corners
This commit is contained in:
@@ -1088,8 +1088,7 @@
|
||||
<div class="flex1">
|
||||
<h4>Blocking API url</h4>
|
||||
<h5>Example: http://127.0.0.1:5000/</h5>
|
||||
<input id="textgenerationwebui_api_url_text" name="textgenerationwebui_api_url" class="text_pole wide100p"
|
||||
maxlength="500" value="">
|
||||
<input id="textgenerationwebui_api_url_text" name="textgenerationwebui_api_url" class="text_pole wide100p" maxlength="500" value="">
|
||||
</div>
|
||||
<div class="flex1">
|
||||
<h4>Streaming API url</h4>
|
||||
@@ -2487,7 +2486,6 @@
|
||||
<div id="movingDivs"></div>
|
||||
<div id="sheld">
|
||||
<div id="sheldheader" class="fa-solid fa-grip drag-grabber"></div>
|
||||
<!-- <div class="pull-tab"></div> -->
|
||||
<div id="chat">
|
||||
</div>
|
||||
<div id="form_sheld">
|
||||
|
@@ -948,7 +948,7 @@ function printMessages() {
|
||||
function clearChat() {
|
||||
count_view_mes = 0;
|
||||
extension_prompts = {};
|
||||
$("#chat").html("");
|
||||
$("#chat").children().remove();
|
||||
}
|
||||
|
||||
function deleteLastMessage() {
|
||||
|
@@ -297,8 +297,8 @@ code {
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
vertical-align: middle;
|
||||
right: 5px;
|
||||
top: 5px;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
opacity: 0.5;
|
||||
cursor: grab;
|
||||
border: 1px solid var(--white30a);
|
||||
@@ -1255,7 +1255,7 @@ input[type=search]:focus::-webkit-search-cancel-button {
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
border-radius: 20px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid var(--black50a);
|
||||
box-shadow: 0 0 7px var(--black50a);
|
||||
margin: 5px;
|
||||
@@ -2431,7 +2431,7 @@ h5 {
|
||||
box-shadow: 0px 0px 20px black;
|
||||
padding: 10px;
|
||||
background-color: var(--SmartThemeBlurTintColor);
|
||||
border-radius: 20px;
|
||||
border-radius: 10px;
|
||||
overflow-y: auto;
|
||||
border: 1px solid var(--grey30);
|
||||
}
|
||||
@@ -3510,13 +3510,13 @@ label[for="extensions_autoconnect"] {
|
||||
.drawer-content {
|
||||
background-color: var(--SmartThemeBlurTintColor);
|
||||
color: var(--SmartThemeBodyColor);
|
||||
border-radius: 20px;
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid var(--grey30a);
|
||||
box-shadow: 0 0 20px black;
|
||||
min-width: 450px;
|
||||
width: var(--sheldWidth);
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
max-height: calc(100svh - 70px);
|
||||
display: none;
|
||||
position: absolute;
|
||||
@@ -3595,6 +3595,10 @@ toolcool-color-picker {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.padding10 {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.margin0 {
|
||||
margin: 0;
|
||||
}
|
||||
@@ -3805,7 +3809,7 @@ toolcool-color-picker {
|
||||
|
||||
body.bubblechat .mes {
|
||||
padding: 10px;
|
||||
border-radius: 20px;
|
||||
border-radius: 10px;
|
||||
background-color: var(--SmartThemeBlurTintColor);
|
||||
margin-bottom: 5px;
|
||||
border: 1px solid var(--white30a);
|
||||
@@ -3894,6 +3898,16 @@ body.movingUI #floatingPrompt {
|
||||
resize: both;
|
||||
}
|
||||
|
||||
body.movingUI #chat::-webkit-scrollbar-thumb {
|
||||
background-color: var(--grey7070a);
|
||||
border: 2px solid transparent;
|
||||
border-top: 20px solid transparent;
|
||||
box-shadow: inset 0 0 0 1px var(--black50a);
|
||||
border-radius: 10px;
|
||||
background-clip: content-box;
|
||||
}
|
||||
|
||||
|
||||
#expression-image.default,
|
||||
#expression-holder:has(.default) {
|
||||
height: 120px;
|
||||
|
Reference in New Issue
Block a user