UX: scope chat-channel-title hover effect (#18854)

This commit is contained in:
chapoi 2022-11-03 09:04:57 +01:00 committed by GitHub
parent 52be5b3782
commit 1c52e11d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,12 @@
.chat-channel-title { .channels-list .direct-message-channels {
max-width: 96%; .chat-channel-title {
max-width: 100%;
box-sizing: border-box;
}
.direct-message-channels .chat-channel-row:hover & { .chat-channel-row:hover {
overflow: hidden; .chat-channel-title {
max-width: unset; overflow: hidden;
}
} }
} }