mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-07-15 13:30:01 +02:00
Add features:
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user