mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-07-13 13:14:22 +02:00
Allow window horizotal and vertical resize
This commit is contained in:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user