@vscode/markdown-editor 0.0.2-73 → 0.0.2-75

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/markdown-editor",
3
- "version": "0.0.2-73",
3
+ "version": "0.0.2-75",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -111,5 +111,5 @@
111
111
  "vitest": "^4.1.0",
112
112
  "zod": "^4.3.6"
113
113
  },
114
- "gitHead": "199d6b94a718b97284c49caf62ed5c348743629a"
114
+ "gitHead": "334994d67ceca5a816f6d7307410bed161baeb4f"
115
115
  }
@@ -143,6 +143,552 @@
143
143
  text-decoration: none;
144
144
  }
145
145
 
146
+ .md-rich-link {
147
+ display: inline-flex;
148
+ align-items: baseline;
149
+ max-width: min(100%, 52rem);
150
+ box-sizing: border-box;
151
+ gap: 0.24em;
152
+ padding: 1px 0.3em;
153
+ border: 1px solid color-mix(in srgb, var(--vscode-textLink-foreground, #0969da) 24%, transparent);
154
+ border-radius: 0.3em;
155
+ background: var(--vscode-button-secondaryBackground, #f3f3f3);
156
+ color: inherit;
157
+ font-size: 1em;
158
+ line-height: 1.25;
159
+ text-decoration: none;
160
+ vertical-align: baseline;
161
+ white-space: nowrap;
162
+ cursor: pointer;
163
+ --md-rich-link-success-color: var(--vscode-charts-green, #1f883d);
164
+ }
165
+
166
+ .md-rich-link:hover {
167
+ border-color: var(--vscode-focusBorder, color-mix(in srgb, currentColor 42%, transparent));
168
+ background: var(--vscode-button-secondaryHoverBackground, #e5e5e5);
169
+ text-decoration: none;
170
+ }
171
+
172
+ .md-rich-link:focus-visible {
173
+ outline: 1px solid var(--vscode-focusBorder, currentColor);
174
+ outline-offset: 1px;
175
+ }
176
+
177
+ .md-rich-link-icon {
178
+ flex: none;
179
+ align-self: center;
180
+ font-size: 0.92em;
181
+ color: color-mix(in srgb, var(--vscode-textLink-foreground, #0969da) 78%, currentColor);
182
+ }
183
+
184
+ .md-rich-link-label,
185
+ .md-rich-link-title,
186
+ .md-rich-link-detail {
187
+ overflow: hidden;
188
+ text-overflow: ellipsis;
189
+ }
190
+
191
+ .md-rich-link-label,
192
+ .md-rich-link-title {
193
+ flex: 0 1 auto;
194
+ min-width: 0;
195
+ color: var(--vscode-textLink-foreground, currentColor);
196
+ font-weight: 600;
197
+ }
198
+
199
+ .md-rich-link-title {
200
+ max-width: 200px;
201
+ }
202
+
203
+ .md-rich-link[data-md-rich-link-kind='session'] :is(.md-rich-link-label, .md-rich-link-title) {
204
+ max-width: 150px;
205
+ }
206
+
207
+ .md-rich-link-label[hidden],
208
+ .md-rich-link-title[hidden],
209
+ .md-rich-link-reference[hidden] {
210
+ display: none;
211
+ }
212
+
213
+ .md-rich-link-reference {
214
+ flex: none;
215
+ color: var(--vscode-descriptionForeground, color-mix(in srgb, currentColor 72%, transparent));
216
+ font-size: 0.92em;
217
+ }
218
+
219
+ .md-rich-link-detail {
220
+ flex: 1 1 auto;
221
+ min-width: 1.5em;
222
+ color: var(--vscode-descriptionForeground, color-mix(in srgb, currentColor 72%, transparent));
223
+ font-size: 0.92em;
224
+ }
225
+
226
+ .md-rich-link-detail::before {
227
+ content: '·';
228
+ margin-right: 0.28em;
229
+ }
230
+
231
+ .md-rich-link-status {
232
+ flex: none;
233
+ display: inline-flex;
234
+ align-self: center;
235
+ align-items: center;
236
+ gap: 0.22em;
237
+ margin-left: 0.04em;
238
+ color: var(--vscode-descriptionForeground, currentColor);
239
+ font-size: 0.86em;
240
+ font-weight: 600;
241
+ line-height: 1;
242
+ }
243
+
244
+ .md-rich-link-detail[hidden],
245
+ .md-rich-link-changes[hidden],
246
+ .md-rich-link-status[hidden] {
247
+ display: none;
248
+ }
249
+
250
+ .md-rich-link-changes {
251
+ flex: none;
252
+ display: inline-flex;
253
+ align-self: center;
254
+ gap: 0.28em;
255
+ font-size: 0.86em;
256
+ font-weight: 600;
257
+ line-height: 1;
258
+ }
259
+
260
+ .md-rich-link-changes::before,
261
+ .md-rich-link:not(
262
+ [data-md-rich-link-kind='issue'],
263
+ [data-md-rich-link-kind='pullRequest'],
264
+ [data-md-rich-link-kind='session']
265
+ ) .md-rich-link-primary-status::before {
266
+ content: '·';
267
+ color: var(--vscode-descriptionForeground, currentColor);
268
+ font-weight: 400;
269
+ }
270
+
271
+ .md-rich-link-insertions {
272
+ color: var(--vscode-charts-green, #1f883d);
273
+ }
274
+
275
+ .md-rich-link-deletions {
276
+ color: var(--vscode-charts-red, #cf222e);
277
+ }
278
+
279
+ .md-rich-link-status-icon {
280
+ flex: none;
281
+ align-self: center;
282
+ font-size: 1em;
283
+ }
284
+
285
+ .md-rich-link:is(
286
+ [data-md-rich-link-status='open'],
287
+ [data-md-rich-link-status='closed'],
288
+ [data-md-rich-link-status='merged'],
289
+ [data-md-rich-link-status='draft'],
290
+ [data-md-rich-link-status='notPlanned']
291
+ ) .md-rich-link-primary-status {
292
+ color: var(--md-rich-link-state-color);
293
+ }
294
+
295
+ .md-rich-link-secondary-status {
296
+ margin-left: 0.06em;
297
+ }
298
+
299
+ .md-rich-link-secondary-status::before {
300
+ content: '·';
301
+ margin-right: 0.08em;
302
+ color: var(--vscode-descriptionForeground, currentColor);
303
+ font-weight: 400;
304
+ }
305
+
306
+ .md-rich-link:is(
307
+ [data-md-rich-link-status='open'],
308
+ [data-md-rich-link-status='closed'],
309
+ [data-md-rich-link-status='merged'],
310
+ [data-md-rich-link-status='draft'],
311
+ [data-md-rich-link-status='notPlanned']
312
+ ) .md-rich-link-primary-status {
313
+ align-self: baseline;
314
+ padding: 0;
315
+ border: 0;
316
+ border-radius: 0;
317
+ background: transparent;
318
+ font-size: 1em;
319
+ line-height: inherit;
320
+ }
321
+
322
+ .md-rich-link[data-md-rich-link-status='success'] .md-rich-link-primary-status {
323
+ color: var(--vscode-charts-green, #1f883d);
324
+ }
325
+
326
+ .md-rich-link[data-md-rich-link-secondary-status='success'] .md-rich-link-secondary-status {
327
+ color: var(--md-rich-link-success-color);
328
+ }
329
+
330
+ .md-rich-link[data-md-rich-link-status='warning'] .md-rich-link-primary-status,
331
+ .md-rich-link[data-md-rich-link-secondary-status='warning'] .md-rich-link-secondary-status {
332
+ color: var(--vscode-editorWarning-foreground, #bf8700);
333
+ }
334
+
335
+ .md-rich-link[data-md-rich-link-status='error'] .md-rich-link-primary-status,
336
+ .md-rich-link[data-md-rich-link-secondary-status='error'] .md-rich-link-secondary-status {
337
+ color: var(--vscode-errorForeground, #cf222e);
338
+ }
339
+
340
+ .md-rich-link[data-md-rich-link-status='pending'] .md-rich-link-primary-status,
341
+ .md-rich-link[data-md-rich-link-secondary-status='pending'] .md-rich-link-secondary-status {
342
+ color: var(--vscode-editorWarning-foreground, #bf8700);
343
+ }
344
+
345
+ .md-rich-link[data-md-rich-link-kind='issue'] .md-rich-link-primary-status .md-rich-link-status-label,
346
+ .md-rich-link[data-md-rich-link-kind='pullRequest'] :is(
347
+ .md-rich-link-primary-status,
348
+ .md-rich-link-secondary-status
349
+ ) .md-rich-link-status-label {
350
+ display: none;
351
+ }
352
+
353
+ .md-rich-link[data-md-rich-link-status='open'] {
354
+ --md-rich-link-state-color: var(--vscode-charts-green, #1f883d);
355
+ }
356
+
357
+ .md-rich-link[data-md-rich-link-kind='issue'][data-md-rich-link-status='closed'],
358
+ .md-rich-link[data-md-rich-link-status='merged'] {
359
+ --md-rich-link-state-color: var(--vscode-charts-purple, #8250df);
360
+ }
361
+
362
+ .md-rich-link[data-md-rich-link-kind='pullRequest'][data-md-rich-link-status='closed'] {
363
+ --md-rich-link-state-color: var(--vscode-charts-red, #cf222e);
364
+ }
365
+
366
+ .md-rich-link[data-md-rich-link-status='draft'],
367
+ .md-rich-link[data-md-rich-link-status='notPlanned'] {
368
+ --md-rich-link-state-color: var(--vscode-descriptionForeground, #656d76);
369
+ }
370
+
371
+ .md-rich-link[data-md-rich-link-kind='pullRequest'][data-md-rich-link-secondary-status='error'] .md-rich-link-secondary-status {
372
+ color: var(--vscode-charts-red, var(--vscode-errorForeground, #cf222e));
373
+ }
374
+
375
+ .md-rich-link:is(
376
+ [data-md-rich-link-kind='issue'],
377
+ [data-md-rich-link-kind='pullRequest']
378
+ ) {
379
+ align-items: center;
380
+ gap: 4px;
381
+ padding: 1px 6px;
382
+ border-color: var(--vscode-button-secondaryBorder, var(--vscode-button-border, transparent));
383
+ border-radius: 4px;
384
+ background: var(--vscode-button-secondaryBackground, #f3f3f3);
385
+ color: var(--vscode-button-secondaryForeground, #242424);
386
+ font-size: 1em;
387
+ line-height: 1.25;
388
+ vertical-align: -0.5px;
389
+ }
390
+
391
+ .md-rich-link:is(
392
+ [data-md-rich-link-kind='issue'],
393
+ [data-md-rich-link-kind='pullRequest']
394
+ ):hover {
395
+ border-color: var(--vscode-button-secondaryBorder, var(--vscode-button-border, transparent));
396
+ background: var(--vscode-button-secondaryHoverBackground, #e5e5e5);
397
+ color: var(--vscode-button-secondaryForeground, #242424);
398
+ }
399
+
400
+ .md-rich-link:is(
401
+ [data-md-rich-link-kind='issue'],
402
+ [data-md-rich-link-kind='pullRequest']
403
+ ) .md-rich-link-reference {
404
+ display: none;
405
+ }
406
+
407
+ .md-rich-link:is(
408
+ [data-md-rich-link-kind='issue'],
409
+ [data-md-rich-link-kind='pullRequest']
410
+ ) :is(
411
+ .md-rich-link-label,
412
+ .md-rich-link-title,
413
+ .md-rich-link-primary-status,
414
+ .md-rich-link-secondary-status
415
+ ) {
416
+ align-self: center;
417
+ font-size: inherit;
418
+ line-height: inherit;
419
+ }
420
+
421
+ .md-rich-link:is(
422
+ [data-md-rich-link-kind='issue'],
423
+ [data-md-rich-link-kind='pullRequest']
424
+ ) :is(.md-rich-link-label, .md-rich-link-title) {
425
+ position: relative;
426
+ top: 0.25px;
427
+ max-width: 200px;
428
+ color: inherit;
429
+ font-weight: 400;
430
+ }
431
+
432
+ .md-rich-link:is(
433
+ [data-md-rich-link-kind='issue'],
434
+ [data-md-rich-link-kind='pullRequest']
435
+ ) .md-rich-link-status {
436
+ align-items: center;
437
+ height: 1.25em;
438
+ }
439
+
440
+ .md-rich-link:is(
441
+ [data-md-rich-link-kind='issue'],
442
+ [data-md-rich-link-kind='pullRequest']
443
+ ) .md-rich-link-status-icon {
444
+ display: inline-flex;
445
+ align-items: center;
446
+ justify-content: center;
447
+ width: 12px;
448
+ height: 12px;
449
+ font-size: 12px;
450
+ line-height: 12px;
451
+ }
452
+
453
+ .md-rich-link:is(
454
+ [data-md-rich-link-kind='issue'],
455
+ [data-md-rich-link-kind='pullRequest']
456
+ ) .md-rich-link-secondary-status::before {
457
+ align-self: center;
458
+ line-height: inherit;
459
+ }
460
+
461
+ .md-rich-link[data-md-rich-link-kind='session'] {
462
+ align-items: center;
463
+ gap: 4px;
464
+ padding: 1px 6px;
465
+ border-color: var(--vscode-chat-requestBorder, var(--vscode-input-border, color-mix(in srgb, currentColor 24%, transparent)));
466
+ border-radius: 4px;
467
+ background: var(--vscode-button-secondaryBackground, #f3f3f3);
468
+ color: var(--vscode-descriptionForeground, #656d76);
469
+ font-size: 1em;
470
+ font-weight: var(--vscode-agents-fontWeight-regular, 400);
471
+ line-height: 1.25;
472
+ vertical-align: baseline;
473
+ }
474
+
475
+ .md-rich-link[data-md-rich-link-kind='session']:hover {
476
+ border-color: var(--vscode-chat-requestBorder, var(--vscode-input-border, color-mix(in srgb, currentColor 24%, transparent)));
477
+ background: var(--vscode-toolbar-hoverBackground, color-mix(in srgb, currentColor 8%, transparent));
478
+ }
479
+
480
+ .md-rich-link[data-md-rich-link-kind='session'] :is(.md-rich-link-label, .md-rich-link-title) {
481
+ color: inherit;
482
+ font-weight: 400;
483
+ }
484
+
485
+ .md-rich-link[data-md-rich-link-kind='session'] .md-rich-link-primary-status {
486
+ align-self: center;
487
+ align-items: center;
488
+ width: 12px;
489
+ height: 12px;
490
+ margin: 0;
491
+ padding: 0;
492
+ border: 0;
493
+ border-radius: 0;
494
+ background: transparent;
495
+ font-size: 1em;
496
+ line-height: inherit;
497
+ }
498
+
499
+ .md-rich-link[data-md-rich-link-kind='session'] .md-rich-link-primary-status .md-rich-link-status-label {
500
+ display: none;
501
+ }
502
+
503
+ .md-rich-link[data-md-rich-link-kind='session'] .md-rich-link-status-icon:not(.monaco-pixel-spinner, [hidden]) {
504
+ display: inline-flex;
505
+ align-items: center;
506
+ justify-content: center;
507
+ width: 12px;
508
+ height: 12px;
509
+ font-size: 12px;
510
+ line-height: 12px;
511
+ }
512
+
513
+ .md-rich-link .md-rich-link-status-icon[hidden] {
514
+ display: none;
515
+ }
516
+
517
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='neutral'] .md-rich-link-primary-status,
518
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='success'] .md-rich-link-primary-status,
519
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='pending'] .md-rich-link-primary-status {
520
+ color: var(--vscode-descriptionForeground, #656d76);
521
+ }
522
+
523
+ .md-rich-link .monaco-pixel-spinner {
524
+ display: inline-grid;
525
+ grid-template-columns: repeat(2, 2px);
526
+ grid-template-rows: repeat(3, 2px);
527
+ column-gap: 2px;
528
+ row-gap: 2px;
529
+ place-content: center;
530
+ width: 16px;
531
+ height: 16px;
532
+ color: currentColor;
533
+ contain: layout style size paint;
534
+ isolation: isolate;
535
+ pointer-events: none;
536
+ transform: translateZ(0);
537
+ }
538
+
539
+ .md-rich-link[data-md-rich-link-kind='session'] .monaco-pixel-spinner {
540
+ width: 12px;
541
+ height: 12px;
542
+ }
543
+
544
+ .md-rich-link .monaco-pixel-spinner-dot {
545
+ display: block;
546
+ width: 2px;
547
+ height: 2px;
548
+ border-radius: 50%;
549
+ background-color: currentColor;
550
+ opacity: 0;
551
+ transform: translateY(-4px);
552
+ animation: monaco-pixel-spinner-dot-cycle 1820ms steps(6, jump-none) infinite;
553
+ }
554
+
555
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(1) {
556
+ animation-delay: 520ms;
557
+ }
558
+
559
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(2) {
560
+ animation-delay: 650ms;
561
+ }
562
+
563
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(3) {
564
+ animation-delay: 260ms;
565
+ }
566
+
567
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(4) {
568
+ animation-delay: 390ms;
569
+ }
570
+
571
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(5) {
572
+ animation-name: monaco-pixel-spinner-dot-cycle-long;
573
+ }
574
+
575
+ .md-rich-link .monaco-pixel-spinner-dot:nth-child(6) {
576
+ animation-name: monaco-pixel-spinner-dot-cycle-short;
577
+ animation-delay: 130ms;
578
+ }
579
+
580
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot {
581
+ opacity: 0.25;
582
+ transform: none;
583
+ animation: monaco-pixel-spinner-ring-pulse 1200ms steps(4, jump-none) infinite;
584
+ }
585
+
586
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(1) {
587
+ animation-delay: 0ms;
588
+ }
589
+
590
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(2) {
591
+ animation-delay: 200ms;
592
+ }
593
+
594
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(3) {
595
+ animation-delay: 1000ms;
596
+ }
597
+
598
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(4) {
599
+ animation-delay: 400ms;
600
+ }
601
+
602
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(5) {
603
+ animation-delay: 800ms;
604
+ }
605
+
606
+ .md-rich-link .monaco-pixel-spinner-ring .monaco-pixel-spinner-dot:nth-child(6) {
607
+ animation-delay: 600ms;
608
+ }
609
+
610
+ @keyframes monaco-pixel-spinner-dot-cycle {
611
+ 0% {
612
+ opacity: 0;
613
+ transform: translateY(-4px);
614
+ }
615
+ 9.34%, 57.14% {
616
+ opacity: 1;
617
+ transform: translateY(0);
618
+ }
619
+ 66.48%, 100% {
620
+ opacity: 0;
621
+ transform: translateY(7px);
622
+ }
623
+ }
624
+
625
+ @keyframes monaco-pixel-spinner-dot-cycle-long {
626
+ 0% {
627
+ opacity: 0;
628
+ transform: translateY(-4px);
629
+ }
630
+ 9.34%, 64.29% {
631
+ opacity: 1;
632
+ transform: translateY(0);
633
+ }
634
+ 73.63%, 100% {
635
+ opacity: 0;
636
+ transform: translateY(7px);
637
+ }
638
+ }
639
+
640
+ @keyframes monaco-pixel-spinner-dot-cycle-short {
641
+ 0% {
642
+ opacity: 0;
643
+ transform: translateY(-4px);
644
+ }
645
+ 9.34%, 50% {
646
+ opacity: 1;
647
+ transform: translateY(0);
648
+ }
649
+ 59.34%, 100% {
650
+ opacity: 0;
651
+ transform: translateY(7px);
652
+ }
653
+ }
654
+
655
+ @keyframes monaco-pixel-spinner-ring-pulse {
656
+ 0%, 100% {
657
+ opacity: 0.25;
658
+ transform: none;
659
+ }
660
+ 16.67% {
661
+ opacity: 1;
662
+ transform: none;
663
+ }
664
+ }
665
+
666
+ @media (prefers-reduced-motion: reduce) {
667
+ .md-rich-link .monaco-pixel-spinner-dot {
668
+ animation: none;
669
+ opacity: 1;
670
+ transform: translateY(0);
671
+ }
672
+ }
673
+
674
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='warning'] .md-rich-link-primary-status {
675
+ color: var(--vscode-list-warningForeground, #855f00);
676
+ }
677
+
678
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='warning'] {
679
+ border-color: var(--vscode-list-warningForeground, #855f00);
680
+ background-color: color-mix(in srgb, var(--vscode-list-warningForeground, #855f00) 12%, transparent);
681
+ color: var(--vscode-list-warningForeground, #855f00);
682
+ }
683
+
684
+ .md-rich-link[data-md-rich-link-kind='session'][data-md-rich-link-status='error'] .md-rich-link-primary-status {
685
+ color: var(--vscode-errorForeground, #cf222e);
686
+ }
687
+
688
+ .md-rich-link-unavailable {
689
+ border-style: dashed;
690
+ }
691
+
146
692
  .md-fence-spacer {
147
693
  visibility: hidden;
148
694
  font-family: 'Cascadia Code', 'Fira Code', monospace;
@@ -915,48 +1461,28 @@ ol.md-list>.md-list-item-active>.md-list-gutter>.md-marker-listItemMarker {
915
1461
  * The rotating "broken rounded-square" progress ring for an inactive task item
916
1462
  * whose text begins with the hidden `:running:` marker (see
917
1463
  * `ListItemViewData.isRunning`). Rendered as a conic-gradient ring — masked so
918
- * only the ring (not its center) paints — with a transparent gap that spins via
919
- * an animated `@property` angle, reading as a segmented spinner rather than a
920
- * checked/unchecked box. The base checkbox border/background are hidden so
921
- * only the ring shows.
1464
+ * only the ring (not its center) paints — with a transparent gap that spins,
1465
+ * reading as a segmented spinner rather than a checked/unchecked box.
922
1466
  */
923
1467
  .md-checkbox-running,
924
1468
  .md-checkbox-running:checked {
925
- background: transparent;
926
- border-color: transparent;
927
- opacity: 1;
928
- }
929
-
930
- @property --md-checkbox-spinner-angle {
931
- syntax: '<angle>';
932
- inherits: false;
933
- initial-value: 0deg;
934
- }
935
-
936
- .md-checkbox-running::after,
937
- .md-checkbox-running:checked::after {
938
- content: '';
939
- position: absolute;
940
- inset: -1px;
941
1469
  padding: 2px;
942
- width: auto;
943
- height: auto;
944
1470
  border: 0;
945
1471
  border-radius: 4px;
946
1472
  background: conic-gradient(
947
- from var(--md-checkbox-spinner-angle),
948
1473
  transparent 0deg 42deg,
949
1474
  #bbb 62deg 360deg
950
1475
  );
951
1476
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
952
1477
  -webkit-mask-composite: xor;
953
1478
  mask-composite: exclude;
954
- animation: md-checkbox-spin 0.8s linear infinite !important;
1479
+ animation: md-checkbox-spin 0.8s linear infinite;
1480
+ opacity: 1;
955
1481
  }
956
1482
 
957
1483
  @keyframes md-checkbox-spin {
958
1484
  to {
959
- --md-checkbox-spinner-angle: 360deg;
1485
+ transform: rotate(360deg);
960
1486
  }
961
1487
  }
962
1488
 
@@ -979,7 +1505,7 @@ ol.md-list>.md-list-item-active>.md-list-gutter>.md-marker-listItemMarker {
979
1505
  }
980
1506
 
981
1507
  @media (prefers-reduced-motion: reduce) {
982
- .md-checkbox-running::after {
1508
+ .md-checkbox-running {
983
1509
  animation: none !important;
984
1510
  }
985
1511
  }