mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 00:35:18 +08:00
17 lines
286 B
SCSS
17 lines
286 B
SCSS
|
.chat-side-panel-resizer {
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: -3px;
|
||
|
width: 5px;
|
||
|
position: absolute;
|
||
|
z-index: z("max");
|
||
|
transition: background-color 0.15s 0.15s;
|
||
|
background-color: transparent;
|
||
|
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
cursor: col-resize;
|
||
|
background: var(--tertiary);
|
||
|
}
|
||
|
}
|