Merge pull request #3746 from Snuffleupagus/remove-webkit-from-b2g-css

[B2G] Remove the remaining occurrences of -webkit prefixes from the CSS
This commit is contained in:
Brendan Dahl 2013-10-02 09:20:58 -07:00
commit 4066f2ad6d

View File

@ -202,15 +202,9 @@ canvas {
height: 100%; height: 100%;
background-color: #ddd; background-color: #ddd;
overflow: hidden; overflow: hidden;
-webkit-transition: width 200ms;
transition: width 200ms; transition: width 200ms;
} }
@-webkit-keyframes progressIndeterminate {
0% { left: 0%; }
50% { left: 100%; }
100% { left: 100%; }
}
@keyframes progressIndeterminate { @keyframes progressIndeterminate {
0% { left: 0%; } 0% { left: 0%; }
50% { left: 100%; } 50% { left: 100%; }
@ -219,7 +213,6 @@ canvas {
#loadingBar .progress.indeterminate { #loadingBar .progress.indeterminate {
background-color: #999; background-color: #999;
-webkit-transition: none;
transition: none; transition: none;
} }
@ -233,7 +226,6 @@ canvas {
background-image: linear-gradient(to right, #999 0%, #fff 50%, #999 100%); background-image: linear-gradient(to right, #999 0%, #fff 50%, #999 100%);
background-size: 100% 100% no-repeat; background-size: 100% 100% no-repeat;
-webkit-animation: progressIndeterminate 2s linear infinite;
animation: progressIndeterminate 2s linear infinite; animation: progressIndeterminate 2s linear infinite;
} }