mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 14:48:08 +02:00
Merge pull request #4454 from brendandahl/gaia-css-clean
Fix gaia css lint errors.
This commit is contained in:
commit
3b3e96575e
1 changed files with 4 additions and 5 deletions
|
@ -38,8 +38,6 @@ body {
|
|||
}
|
||||
|
||||
section {
|
||||
overflow: hidden;
|
||||
font-size: 1rem;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
@ -198,7 +196,7 @@ canvas {
|
|||
#loadingBar .progress {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 0%;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
background-color: #ddd;
|
||||
overflow: hidden;
|
||||
|
@ -206,7 +204,7 @@ canvas {
|
|||
}
|
||||
|
||||
@keyframes progressIndeterminate {
|
||||
0% { left: 0%; }
|
||||
0% { left: 0; }
|
||||
50% { left: 100%; }
|
||||
100% { left: 100%; }
|
||||
}
|
||||
|
@ -224,7 +222,8 @@ canvas {
|
|||
width: 5rem;
|
||||
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue