mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] God damn browser support. Nobody loves prefix.
This commit is contained in:
parent
a5defa9e78
commit
917ab26fd5
2 changed files with 20 additions and 5 deletions
|
@ -270,16 +270,31 @@ div.br {
|
|||
height: 30px;
|
||||
}
|
||||
|
||||
@keyframes pacmanLinearMove {
|
||||
0% { background-position: 30% 15%; }
|
||||
100% { background-position: 70% 15%; }
|
||||
@-webkit-keyframes pacmanlinearmove {
|
||||
from { background-position: 30% 15%; }
|
||||
to { background-position: 70% 15%; }
|
||||
}
|
||||
@-moz-keyframes pacmanlinearmove {
|
||||
from { background-position: 30% 15%; }
|
||||
to { background-position: 70% 15%; }
|
||||
}
|
||||
@-o-keyframes pacmanlinearmove {
|
||||
from { background-position: 30% 15%; }
|
||||
to { background-position: 70% 15%; }
|
||||
}
|
||||
@keyframes pacmanlinearmove {
|
||||
from { background-position: 30% 15%; }
|
||||
to { background-position: 70% 15%; }
|
||||
}
|
||||
.loader {
|
||||
display: block;
|
||||
z-index: 2000;
|
||||
text-align: center;
|
||||
background: rgba(255, 255, 255, 0.5) url(../img/ajax-loader.gif) center 15% no-repeat;
|
||||
animation: pacmanLinearMove 5s linear infinite;
|
||||
-webkit-animation: pacmanlinearmove 5s linear infinite;
|
||||
-moz-animation: pacmanlinearmove 5s linear infinite;
|
||||
-o-animation: pacmanlinearmove 5s linear infinite;
|
||||
animation: pacmanlinearmove 5s linear infinite;
|
||||
}
|
||||
.loader-content {
|
||||
position: fixed;
|
||||
|
|
2
css/style.min.css
vendored
2
css/style.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue