better drag and drop and various fixes

This commit is contained in:
MathMan05 2025-04-30 21:55:40 -05:00
parent ea8d9978a6
commit 7a93e5f9b5
4 changed files with 117 additions and 18 deletions

View file

@ -1046,6 +1046,7 @@ span.instanceStatus {
display: flex;
flex-direction: column;
margin-bottom: 2px;
position: relative;
}
.channelbutton {
height: 2em;
@ -1939,6 +1940,8 @@ img.bigembedimg {
background: var(--secondary-bg);
border-radius: 4px;
box-shadow: 0 0 8px var(--shadow);
z-index: 2;
hr {
width: 90%;
height: 1px;
@ -2424,6 +2427,7 @@ fieldset input[type="radio"] {
color: var(--primary-text-soft);
border: none;
transition: background 0.1s;
position: relative;
}
.activeSetting {
background: color-mix(in srgb, var(--secondary-bg) 60%, transparent);
@ -3052,6 +3056,26 @@ img.error::after {
top: 0;
left: 0;
}
.dragTopView::after {
content: "";
width: 100%;
height: 4px;
border-radius: 4px;
background: var(--primary-text-soft);
top: -1px;
left: 0px;
position: absolute;
}
.dragBottomView::after {
content: "";
width: 100%;
height: 4px;
border-radius: 4px;
background: var(--primary-text-soft);
bottom: -3px;
left: 0px;
position: absolute;
}
.gifBox {
img {
max-width: 196px;