listpage-next 0.0.223 → 0.0.224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -212,5 +212,60 @@ const MarkdownBody = styled_components.div`
|
|
|
212
212
|
margin: 16px 0;
|
|
213
213
|
background: linear-gradient(to right, #e5e7eb, #cbd5e1, #e5e7eb);
|
|
214
214
|
}
|
|
215
|
+
|
|
216
|
+
placeholder[type='pending'] {
|
|
217
|
+
display: inline-block;
|
|
218
|
+
vertical-align: text-bottom;
|
|
219
|
+
width: 28px;
|
|
220
|
+
height: 100%;
|
|
221
|
+
position: relative;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
placeholder[type='pending']::after {
|
|
225
|
+
content: '';
|
|
226
|
+
display: inline-block;
|
|
227
|
+
width: 8px;
|
|
228
|
+
height: 8px;
|
|
229
|
+
border-radius: 50%;
|
|
230
|
+
background: rgba(0, 0, 0, 0.6);
|
|
231
|
+
box-shadow:
|
|
232
|
+
0 0 0 0 rgba(0, 0, 0, 0.6),
|
|
233
|
+
10px 0 0 0 rgba(0, 0, 0, 0.6),
|
|
234
|
+
20px 0 0 0 rgba(0, 0, 0, 0.6);
|
|
235
|
+
transform-origin: center;
|
|
236
|
+
will-change: transform, box-shadow, background;
|
|
237
|
+
animation: dotRolling 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@keyframes dotRolling {
|
|
241
|
+
0% {
|
|
242
|
+
background: rgba(0, 0, 0, 0.85);
|
|
243
|
+
box-shadow:
|
|
244
|
+
0 0 0 0 rgba(0, 0, 0, 0.85),
|
|
245
|
+
10px 0 0 0 rgba(0, 0, 0, 0.55),
|
|
246
|
+
20px 0 0 -2px rgba(0, 0, 0, 0.45);
|
|
247
|
+
}
|
|
248
|
+
33% {
|
|
249
|
+
background: rgba(0, 0, 0, 0.55);
|
|
250
|
+
box-shadow:
|
|
251
|
+
0 0 0 -2px rgba(0, 0, 0, 0.45),
|
|
252
|
+
10px 0 0 2px rgba(0, 0, 0, 0.85),
|
|
253
|
+
20px 0 0 -2px rgba(0, 0, 0, 0.45);
|
|
254
|
+
}
|
|
255
|
+
66% {
|
|
256
|
+
background: rgba(0, 0, 0, 0.55);
|
|
257
|
+
box-shadow:
|
|
258
|
+
0 0 0 -2px rgba(0, 0, 0, 0.45),
|
|
259
|
+
10px 0 0 -2px rgba(0, 0, 0, 0.45),
|
|
260
|
+
20px 0 0 2px rgba(0, 0, 0, 0.85);
|
|
261
|
+
}
|
|
262
|
+
100% {
|
|
263
|
+
background: rgba(0, 0, 0, 0.85);
|
|
264
|
+
box-shadow:
|
|
265
|
+
0 0 0 0 rgba(0, 0, 0, 0.85),
|
|
266
|
+
10px 0 0 0 rgba(0, 0, 0, 0.55),
|
|
267
|
+
20px 0 0 -2px rgba(0, 0, 0, 0.45);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
215
270
|
`;
|
|
216
271
|
export { Markdown };
|