mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
- 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
22 lines
320 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|