mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:35:20 +08:00
17 lines
299 B
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);
|
|
}
|
|
}
|