Merge pull request #618 from ONLYOFFICE/feature/loader-background-color

Change loader background
This commit is contained in:
maxkadushkin 2020-12-10 14:34:50 +03:00 committed by GitHub
commit 89823a58c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@
line-height: @loadmask-image-height; line-height: @loadmask-image-height;
border: none; border: none;
background-image: none; background-image: none;
background-color: fade(@black, 90%); background-color: fade(@gray-deep, 95%);
color: @gray-light; color: @gray-light;
.border-radius(@border-radius-large); .border-radius(@border-radius-large);
@ -107,7 +107,7 @@
} }
} }
@keyframes slidein { @keyframes rotation {
from { from {
transform: rotate(0); transform: rotate(0);
} }
@ -119,7 +119,7 @@
#loadmask-spinner { #loadmask-spinner {
animation-duration: .8s; animation-duration: .8s;
animation-name: slidein; animation-name: rotation;
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-timing-function: linear; animation-timing-function: linear;
} }