1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-15 23:00:57 +00:00
Files
seahub/frontend/src/components/resize-bar/index.css
2024-08-02 12:37:58 +08:00

43 lines
689 B
CSS

.resize-bar {
height: 100%;
width: 6px;
position: absolute;
top: 0;
opacity: 0;
transition-duration: .2s;
transition-property: opacity;
}
.resize-bar:hover {
opacity: 1;
cursor: col-resize;
}
.resize-bar .resize-bar-line {
background-color: #aaa;
height: 100%;
width: 2px;
display: none;
user-select: none;
}
.resize-bar:hover .resize-bar-line {
display: block;
}
.resize-bar .resize-bar-drag-handler {
background: #2d7ff9;
border-radius: 10px;
margin-left: 1px;
position: absolute;
transform: translate(-50%);
width: 6px;
display: none;
z-index: 1;
user-select: none;
}
.resize-bar:hover .resize-bar-drag-handler {
display: block;
}