| 1 |
p.skt-loading.inline{ |
| 2 |
display: inline-block; |
| 3 |
} |
| 4 |
|
| 5 |
p.skt-loading.loading-width-sm { |
| 6 |
width: 50px; |
| 7 |
} |
| 8 |
|
| 9 |
p.skt-loading.loading-width-sm { |
| 10 |
width: 90px; |
| 11 |
} |
| 12 |
|
| 13 |
p.skt-loading.loading-width-lg { |
| 14 |
width: 150px; |
| 15 |
} |
| 16 |
|
| 17 |
p.skt-loading + p.skt-loading { |
| 18 |
margin-top: 5px; |
| 19 |
} |
| 20 |
|
| 21 |
p.skt-loading:empty { |
| 22 |
min-height: 28px; |
| 23 |
padding-right: 0px; |
| 24 |
background-color: #f8f8f8; |
| 25 |
overflow: hidden; |
| 26 |
position: relative; |
| 27 |
} |
| 28 |
|
| 29 |
p.skt-loading.light-gray:empty { |
| 30 |
background-color: #f2f2f2; |
| 31 |
} |
| 32 |
|
| 33 |
table thead p.skt-loading:empty { |
| 34 |
background-color: #e6edf7; |
| 35 |
} |
| 36 |
|
| 37 |
table p.skt-loading:empty { |
| 38 |
min-height: 22px; |
| 39 |
} |
| 40 |
|
| 41 |
p.skt-loading.medium:empty { |
| 42 |
min-height: 30px; |
| 43 |
} |
| 44 |
|
| 45 |
p.skt-loading.large:empty { |
| 46 |
min-height: 45px; |
| 47 |
} |
| 48 |
|
| 49 |
p.skt-loading:empty::before { |
| 50 |
content: ""; |
| 51 |
position: absolute; |
| 52 |
top: 0; |
| 53 |
bottom: 0; |
| 54 |
animation: skeleton_loader 2s infinite; |
| 55 |
width: 30%; |
| 56 |
min-width: 50px; |
| 57 |
max-width: 200px; |
| 58 |
left: -130%; |
| 59 |
background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%); |
| 60 |
} |
| 61 |
|
| 62 |
p.skt-loading.light-gray:empty::before { |
| 63 |
background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0) 100%); |
| 64 |
} |
| 65 |
|
| 66 |
@keyframes skeleton_loader { |
| 67 |
100% { |
| 68 |
left: 120%; |
| 69 |
} |
| 70 |
} |
| 71 |
|