discourse/plugins/chat/assets/stylesheets/common/chat-side-panel-resizer.scss
chapoi bf971b022d
UX: lower z-index (#23386)
* UX: lower z-index

* Update plugins/chat/assets/stylesheets/common/chat-side-panel-resizer.scss

Co-authored-by: Jarek Radosz <jradosz@gmail.com>

---------

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
2023-09-04 22:30:51 +02:00

31 lines
476 B
SCSS

.chat-side-panel-resizer {
top: 0;
bottom: 0;
position: absolute;
z-index: z("composer", "content") - 1;
transition: background-color 0.15s 0.15s;
background-color: transparent;
.touch & {
left: -6px;
width: 10px;
&:active {
cursor: col-resize;
background: var(--tertiary);
}
}
.no-touch & {
left: -3px;
width: 5px;
&:hover,
&:active {
cursor: col-resize;
background: var(--tertiary);
}
}
}