Add features:

This commit is contained in:
lxsang
2021-03-22 17:21:39 +01:00
parent 26a35a6c70
commit d384a65b73
5 changed files with 152 additions and 9 deletions

View File

@ -8,7 +8,50 @@ afx-sys-panel > div{
margin:0;
padding: 0;
position:absolute;
}
}
afx-sys-panel > div.loading::before{
background-color: orangered;
content: "";
position: absolute;
height: 2px;
width: 0%;
}
afx-sys-panel > div.loading::before {
right: 0;
bottom:0;
animation: sys-loading 1s linear infinite;
}
@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: 12.5%;
}
}
afx-sys-panel .afx-panel-os-menu {
padding:0;
margin: 0;