Merge pull request #4454 from brendandahl/gaia-css-clean

Fix gaia css lint errors.
This commit is contained in:
Tim van der Meij 2014-03-14 22:50:51 +01:00
commit 3b3e96575e

View File

@ -38,8 +38,6 @@ body {
} }
section { section {
overflow: hidden;
font-size: 1rem;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
@ -198,7 +196,7 @@ canvas {
#loadingBar .progress { #loadingBar .progress {
position: absolute; position: absolute;
left: 0; left: 0;
width: 0%; width: 0;
height: 100%; height: 100%;
background-color: #ddd; background-color: #ddd;
overflow: hidden; overflow: hidden;
@ -206,7 +204,7 @@ canvas {
} }
@keyframes progressIndeterminate { @keyframes progressIndeterminate {
0% { left: 0%; } 0% { left: 0; }
50% { left: 100%; } 50% { left: 100%; }
100% { left: 100%; } 100% { left: 100%; }
} }
@ -224,7 +222,8 @@ canvas {
width: 5rem; width: 5rem;
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%;
background-repeat: no-repeat;
animation: progressIndeterminate 2s linear infinite; animation: progressIndeterminate 2s linear infinite;
} }