antos-frontend/src/themes/system/afx-app-window.css

64 lines
1.1 KiB
CSS

afx-app-window {
outline: none;
}
afx-app-window div.afx-window-wrapper{
padding:0;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
afx-app-window ul.afx-window-top{
margin: 0;
padding: 0;
width: 100%;
padding:0;
}
afx-app-window ul.afx-window-top li{
list-style: none;
}
afx-app-window ul li.afx-window-title{
float:none;
overflow: hidden;
}
afx-app-window div.afx-window-content
{
overflow: hidden;
width: 100%;
flex-grow: 1;
}
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;
}