vocs 2.0.8 → 2.0.11

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.
@@ -63,6 +63,38 @@
63
63
  }
64
64
  }
65
65
 
66
+ [data-v-code-skeleton] [data-v-skeleton-bar] {
67
+ display: inline-block;
68
+ height: 0.72em;
69
+ vertical-align: middle;
70
+ border-radius: 0.1875rem;
71
+ background-color: var(--vocs-background-color-surfaceTint);
72
+ background-image: linear-gradient(
73
+ 90deg,
74
+ transparent 0%,
75
+ color-mix(in srgb, var(--vocs-color-gray10) 22%, transparent) 50%,
76
+ transparent 100%
77
+ );
78
+ background-repeat: no-repeat;
79
+ background-size: 200% 100%;
80
+ animation: vocs-skeleton-shimmer 1.25s ease-in-out infinite;
81
+ }
82
+
83
+ @keyframes vocs-skeleton-shimmer {
84
+ from {
85
+ background-position: 180% 0;
86
+ }
87
+ to {
88
+ background-position: -80% 0;
89
+ }
90
+ }
91
+
92
+ @media (prefers-reduced-motion: reduce) {
93
+ [data-v-code-skeleton] [data-v-skeleton-bar] {
94
+ animation: none;
95
+ }
96
+ }
97
+
66
98
  .twoslash-popup-docs {
67
99
  @apply vocs:max-h-40 vocs:overflow-y-scroll;
68
100