Remove further vendor-prefixed CSS

This commit is contained in:
MrTimscampi
2020-01-02 13:36:44 +01:00
parent 4acf4f071e
commit 93e2aa2d3f
16 changed files with 23 additions and 248 deletions
-10
View File
@@ -403,16 +403,6 @@ a[data-role=button] {
background: #292929 !important;
}
@-webkit-keyframes rotating {
from {
transform: rotate(0)
}
to {
transform: rotate(360deg)
}
}
@keyframes rotating {
from {
transform: rotate(0)
+1 -1
View File
@@ -25,7 +25,7 @@ html {
body {
overflow-x: hidden;
background-color: transparent !important
background-color: transparent !important;
}
.mainAnimatedPage {
+6 -3
View File
@@ -172,9 +172,12 @@
margin-left: auto;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { transform:rotate(360deg); } }
@keyframes spin {
100% {
transform:rotate(360deg);
}
}
.osdMediaStatus .animate {
animation:spin 4s linear infinite;
}