Skip to content
Merged
31 changes: 21 additions & 10 deletions src/webpage/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,9 @@ textarea {
::-webkit-calendar-picker-indicator {
opacity: 1;
}
::placeholder {
color: color-mix(in srgb, var(--primary-text-soft), transparent);
}
:focus-visible {
outline: 2px solid var(--focus);
outline-offset: 0;
Expand Down Expand Up @@ -796,6 +799,7 @@ textarea {
height: 32px;
width: 32px;
border-radius: 50%;
object-fit: cover;
cursor: pointer;
user-select: none;
}
Expand Down Expand Up @@ -2045,8 +2049,10 @@ span.instanceStatus {
flex-shrink: 0;
margin-bottom: 4px;
transition: background 0.2s;
&.viewChannel {
background: #00000050;
&.viewChannel, &.viewChannel:hover {
background: var(--channel-selected);
color: var(--primary-text-prominent);
font-weight: bold;
}
}
.memberListStyle {
Expand All @@ -2069,7 +2075,8 @@ span.instanceStatus {
color: var(--primary-text-prominent);
}
#channels .liststyle {
margin: 0 8px;
margin-left: 8px;
margin-right: 8px;
}

/* Dock */
Expand Down Expand Up @@ -2581,7 +2588,6 @@ span.instanceStatus {
}
}
.username {
margin-top: auto;
font-weight: bold;
word-break: break-all;
cursor: pointer;
Expand All @@ -2598,10 +2604,11 @@ span.instanceStatus {
width: 20px;
height: 20px;
object-fit: contain;
align-self: center;
}
.userwrap {
display: flex;
align-items: flex-end;
align-items: baseline;
}
.pinText {
cursor: pointer;
Expand All @@ -2622,7 +2629,6 @@ span.instanceStatus {
.bot {
padding: 2px 5px;
margin-left: 4px;
vertical-align: 1px;
background: color-mix(in srgb, var(--accent-color) 75%, transparent) !important;
font-size: 0.75em !important;
font-weight: bold;
Expand All @@ -2631,6 +2637,7 @@ span.instanceStatus {
flex-grow: 0;
width: fit-content;
background-clip: border-box !important;
align-self: center;
}
.membererror {
display: inline-block;
Expand Down Expand Up @@ -2736,7 +2743,7 @@ span .quote:last-of-type .quoteline {
margin-bottom: 4px;
font-size: 0.9em;
color: var(--reply-text);
align-items: center;
align-items: baseline;
gap: 4px;
}
.replyflex::before {
Expand All @@ -2759,13 +2766,13 @@ span .quote:last-of-type .quoteline {
.replypfp {
height: 20px;
width: 20px;
align-self: center;
}
.replyflex .username {
flex: none;
max-width: calc(100% - 75px);
}
.replytext {
margin-top: auto;
cursor: pointer;
}
.replytext a {
Expand Down Expand Up @@ -4337,6 +4344,10 @@ fieldset input[type="radio"] {
.reactiondiv {
padding-left: 44px;
}
.sticker {
height: auto;
max-width: 100%;
}
#realbox,
#logindiv,
#pasteimg {
Expand Down Expand Up @@ -4627,7 +4638,7 @@ fieldset input[type="radio"] {
display: inline-flex;
align-items: center;
justify-content: center;
background: #00000099;
background: color-mix(in srgb, var(--card-bg) 60%, transparent);
font-weight: bold;
}
}
Expand All @@ -4643,7 +4654,7 @@ fieldset input[type="radio"] {
overflow-x: clip;
}
.searchGifBar {
background: var(--black);
background: var(--card-bg);
}
.vr-message {
border-right: 1px solid var(--black) !important;
Expand Down
Loading