Compare commits
2 Commits
7cb2358a54
...
137bab63a0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
137bab63a0 | ||
|
|
9a36814b0b |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.123",
|
"version": "4.6.124",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.123",
|
"version": "4.6.124",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.6.0",
|
"axios": "^1.6.0",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.123",
|
"version": "4.6.124",
|
||||||
"description": "Twitch VOD Manager - Download Twitch VODs easily",
|
"description": "Twitch VOD Manager - Download Twitch VODs easily",
|
||||||
"main": "dist/main.js",
|
"main": "dist/main.js",
|
||||||
"author": "xRangerDE",
|
"author": "xRangerDE",
|
||||||
|
|||||||
@ -778,9 +778,9 @@ async function selectStreamer(name: string, forceRefresh = false): Promise<void>
|
|||||||
<div class="vod-card vod-card-skeleton">
|
<div class="vod-card vod-card-skeleton">
|
||||||
<div class="vod-skel-thumb"></div>
|
<div class="vod-skel-thumb"></div>
|
||||||
<div class="vod-info">
|
<div class="vod-info">
|
||||||
<div class="vod-skel-line" style="width: 85%;"></div>
|
<div class="vod-skel-line title"></div>
|
||||||
<div class="vod-skel-line" style="width: 55%; margin-top: 8px; height: 10px;"></div>
|
<div class="vod-skel-line meta-1"></div>
|
||||||
<div class="vod-skel-line" style="width: 40%; margin-top: 6px; height: 10px;"></div>
|
<div class="vod-skel-line meta-2"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`).join('');
|
`).join('');
|
||||||
|
|||||||
@ -562,6 +562,13 @@ body {
|
|||||||
animation: skel-shimmer 1.5s linear infinite;
|
animation: skel-shimmer 1.5s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Three skeleton-line variants for the VOD card placeholder — match
|
||||||
|
the visual rhythm of a real card (title line, then two shorter
|
||||||
|
meta lines). Replaces inline width/height/margin-top declarations. */
|
||||||
|
.vod-card-skeleton .vod-skel-line.title { width: 85%; }
|
||||||
|
.vod-card-skeleton .vod-skel-line.meta-1 { width: 55%; height: 10px; margin-top: 8px; }
|
||||||
|
.vod-card-skeleton .vod-skel-line.meta-2 { width: 40%; height: 10px; margin-top: 6px; }
|
||||||
|
|
||||||
@keyframes skel-shimmer {
|
@keyframes skel-shimmer {
|
||||||
0% { background-position: 200% 0; }
|
0% { background-position: 200% 0; }
|
||||||
100% { background-position: -200% 0; }
|
100% { background-position: -200% 0; }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user