add background hover color change
Build Mumble Web 2 / linux_build (push) Successful in 1m39s
Build Mumble Web 2 / windows_build (push) Successful in 2m33s
Build Mumble Web 2 / android_build (push) Successful in 6m4s

This commit is contained in:
2026-01-25 13:19:00 -07:00
parent 37dc3ffa47
commit bd4620139f
+7 -1
View File
@@ -84,7 +84,6 @@ a:visited {
} }
.channel_header { .channel_header {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@@ -105,9 +104,16 @@ a:visited {
/* The whole right side of the row is the dblclick target */ /* The whole right side of the row is the dblclick target */
.channel_row_click { .channel_row_click {
flex: 1; flex: 1;
padding: 0.1rem 0.25rem 0.1rem 0.5rem;
cursor: pointer; cursor: pointer;
} }
/* Hover highlight for whole row area (title + blank space) */
.channel_row_click:hover {
background-color: var(--channel-hover-bg, #222); /* pick your color */
}
/* still keep text non-selectable if desired */ /* still keep text non-selectable if desired */
.channel_details { .channel_details {
-webkit-user-select: none; -webkit-user-select: none;