mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-04-22 15:16:45 +02:00
131 lines
2.4 KiB
CSS
131 lines
2.4 KiB
CSS
|
|
afx-sys-panel{
|
|
padding:0;
|
|
margin: 0;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
afx-sys-panel > div{
|
|
width: 100%;
|
|
margin:0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 35px;
|
|
}
|
|
|
|
afx-sys-panel afx-apps-dock
|
|
{
|
|
flex:1;
|
|
}
|
|
|
|
afx-sys-panel afx-overlay
|
|
{
|
|
bottom: 35px;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
afx-sys-panel > div.loading::before{
|
|
background-color: orangered;
|
|
content: "";
|
|
position: absolute;
|
|
height: 2px;
|
|
width: 0%;
|
|
}
|
|
|
|
afx-sys-panel > div.loading::before {
|
|
right: 0;
|
|
top:0;
|
|
animation: sys-loading 1s linear infinite;
|
|
}
|
|
afx-sys-panel .afx-panel-os-stray button{
|
|
font-size: 22px;
|
|
}
|
|
@keyframes sys-loading {
|
|
0% {
|
|
right: auto;
|
|
left: 0;
|
|
width: 25%;
|
|
}
|
|
25% {
|
|
right: auto;
|
|
left: 25%;
|
|
width: 25%;
|
|
}
|
|
50% {
|
|
right: auto;
|
|
left: 50%;
|
|
width: 25%;
|
|
}
|
|
75% {
|
|
right: auto;
|
|
left: 75%;
|
|
width: 25%;
|
|
}
|
|
100% {
|
|
right: auto;
|
|
left: 100%;
|
|
width: 0%;
|
|
}
|
|
}
|
|
|
|
afx-sys-panel .afx-panel-os-menu {
|
|
padding:0;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
afx-sys-panel afx-hbox[data-id="btlist"] afx-button button
|
|
{
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 0;
|
|
border: 0px;
|
|
}
|
|
|
|
afx-sys-panel afx-list-view[data-id="applist"] > div.list-container {
|
|
margin: 0 auto;
|
|
}
|
|
afx-sys-panel afx-list-view[data-id="applist"] > div.list-container > ul
|
|
{
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: center;
|
|
}
|
|
afx-sys-panel afx-list-view[data-id="applist"] > div.list-container > ul li{
|
|
/*display: block;*/
|
|
width: 90px;
|
|
text-align: center;
|
|
font-size: 40px;
|
|
/*justify-content: normal !important;*/
|
|
}
|
|
|
|
afx-sys-panel afx-list-view[data-id="applist"] i{
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
afx-sys-panel afx-list-view[data-id="applist"] i.label-text{
|
|
word-break: break-word;
|
|
font-size: 14px;
|
|
}
|
|
afx-sys-panel afx-list-view[data-id="applist"] i.icon-style {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
afx-sys-panel afx-list-view[data-id="applist"] afx-label span
|
|
{
|
|
flex-direction: column;
|
|
}
|
|
/*
|
|
afx-sys-panel afx-list-view[data-id="applist"] > div.list-container > ul li:hover {
|
|
background-color: transparent;
|
|
}*/
|
|
afx-sys-panel afx-list-view[data-id="applist"]> div.list-container > ul .afx-list-item li
|
|
{
|
|
background-color: transparent;
|
|
} |