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

17 lines
299 B
SCSS

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