Add config option to configure chat background

This commit is contained in:
天クマ 2026-07-17 16:06:29 -03:00
commit 36f8448bf9
5 changed files with 37 additions and 6 deletions

View file

@ -19,6 +19,7 @@
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
--glass-blur: blur(20px);
--high-box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3);
}
* {
@ -65,7 +66,7 @@ button:hover {
}
input {
background: var(--bg-main);
background: var(--bg-secondary);
color: var(--accent);
border: none;
padding: 1em;
@ -485,7 +486,7 @@ input:focus {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.4;
opacity: var(--background-opacity);
pointer-events: none;
z-index: 0;
}
@ -564,9 +565,10 @@ input:focus {
.load-more-btn {
margin: auto;
background-color: var(--bg-secondary);
background-color: rgba(255, 255, 255, 0.1);
padding: .4em;
cursor: pointer;
box-shadow: var(--high-box-shadow);
}
.load-more-btn:hover {
@ -904,6 +906,11 @@ input:focus {
height: 100%;
}
.modal-body h3 {
font-size: xx-large;
font-weight: 100;
}
.modal-header {
display: flex;
justify-content: space-between;