parent
88c085d72d
commit
350fac6659
@ -1,26 +1,27 @@ |
|||||||
/* dragbar UI */ |
/* dragbar UI */ |
||||||
|
|
||||||
.dragbar { |
.dragbar { |
||||||
display : block; |
display: block; |
||||||
height : 100%; |
height: 100%; |
||||||
position : absolute; |
position: absolute; |
||||||
left: 0px; |
left: 0px; |
||||||
top: 0px; |
top: 0px; |
||||||
width: 0.3em; |
width: 0.3em; |
||||||
z-index: 9999; |
z-index: 9999; |
||||||
} |
} |
||||||
|
|
||||||
.overlay { |
.overlay { |
||||||
position: absolute; |
position: absolute; |
||||||
left: 0; |
left: 0; |
||||||
top: 0; |
top: 0; |
||||||
width: 100vw; |
width: 100vw; |
||||||
height: 100vh; |
height: 100vh; |
||||||
display: block; |
display: block; |
||||||
z-index: 9998; |
z-index: 9998; |
||||||
} |
} |
||||||
|
|
||||||
.dragbar:hover, .dragbar.ondrag{ |
.dragbar:hover, |
||||||
background-color: var(--secondary); |
.dragbar.ondrag { |
||||||
cursor:col-resize; |
background-color: var(--secondary); |
||||||
} |
cursor: col-resize; |
||||||
|
} |
||||||
|
@ -0,0 +1,27 @@ |
|||||||
|
/* dragbar UI */ |
||||||
|
|
||||||
|
.dragbar_terminal { |
||||||
|
display: block; |
||||||
|
width: 100%; |
||||||
|
position: absolute; |
||||||
|
left: 0px; |
||||||
|
top: 0px; |
||||||
|
height: 0.3em; |
||||||
|
z-index: 9999; |
||||||
|
} |
||||||
|
|
||||||
|
.overlay { |
||||||
|
position: absolute; |
||||||
|
left: 0; |
||||||
|
top: 0; |
||||||
|
width: 100vw; |
||||||
|
height: 100vh; |
||||||
|
display: block; |
||||||
|
z-index: 9998; |
||||||
|
} |
||||||
|
|
||||||
|
.dragbar_terminal:hover, |
||||||
|
.dragbar_terminal.ondrag { |
||||||
|
background-color: var(--secondary); |
||||||
|
cursor: row-resize; |
||||||
|
} |
Loading…
Reference in new issue