discourse/plugins/chat/assets/stylesheets/desktop/chat-channel-title.scss
Joffrey JAFFEUX 66130dc8c1
REFACTOR: handles every chat resource as an URL (#18961)
- Note this is also tweaking the UI a little bit as we are now using links/buttons in the header as needed
- It disables the find ideal channel in drawer mode, if loading `/chat` in drawer mode it will either reopen at the last position or just stay on index
2022-11-11 06:39:15 +01:00

22 lines
320 B
SCSS

.chat-channel-title-wrapper {
padding: 0.25rem;
&:hover {
background: var(--primary-very-low);
border-radius: 5px;
}
}
.channels-list {
.chat-channel-title {
max-width: 100%;
box-sizing: border-box;
}
.chat-channel-row:hover {
.chat-channel-title {
overflow: hidden;
}
}
}