Allow window horizotal and vertical resize

This commit is contained in:
lxsang
2021-04-01 18:44:00 +02:00
parent 1a132178c3
commit ac76a5f967
3 changed files with 86 additions and 27 deletions

View File

@ -33,5 +33,32 @@ afx-app-window div.afx-window-content
afx-app-window div.afx-window-grip{
height: 10px;
width: 10px;
user-select:none;
position: absolute;
bottom: 0;
right: 0;
cursor: nwse-resize;
background-color: transparent;
}
afx-app-window div.afx-window-grip-bottom{
height: 3px;
user-select:none;
position: absolute;
bottom: -1px;
left: 0;
right: 10px;
cursor: ns-resize;
background-color: transparent;
}
afx-app-window div.afx-window-grip-right{
width: 3px;
user-select:none;
position: absolute;
bottom: 10px;
right: -1px;
top: 0;
cursor: ew-resize;
background-color: transparent;
}