Compare commits
2 Commits
94a542b09a
...
e728212981
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e728212981 | ||
|
|
afbd09f507 |
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.95",
|
"version": "4.6.96",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.95",
|
"version": "4.6.96",
|
||||||
"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.95",
|
"version": "4.6.96",
|
||||||
"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",
|
||||||
|
|||||||
@ -304,9 +304,9 @@
|
|||||||
<div class="clip-status" id="clipStatus"></div>
|
<div class="clip-status" id="clipStatus"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="settings-card" style="max-width: 600px; margin: 20px auto;">
|
<div class="settings-card centered">
|
||||||
<h3 id="clipsInfoTitle">Info</h3>
|
<h3 id="clipsInfoTitle">Info</h3>
|
||||||
<p style="color: var(--text-secondary); line-height: 1.6; white-space: pre-line;" id="clipsInfoText">
|
<p id="clipsInfoText" class="info-text">
|
||||||
Unterstutzte Formate:
|
Unterstutzte Formate:
|
||||||
- https://clips.twitch.tv/ClipName
|
- https://clips.twitch.tv/ClipName
|
||||||
- https://www.twitch.tv/streamer/clip/ClipName
|
- https://www.twitch.tv/streamer/clip/ClipName
|
||||||
@ -431,7 +431,7 @@
|
|||||||
|
|
||||||
<div class="settings-card">
|
<div class="settings-card">
|
||||||
<h3 id="statsSummaryTitle">Uebersicht</h3>
|
<h3 id="statsSummaryTitle">Uebersicht</h3>
|
||||||
<div id="statsSummaryGrid" style="display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap:12px;"></div>
|
<div id="statsSummaryGrid" class="stats-summary-grid"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="settings-card">
|
<div class="settings-card">
|
||||||
|
|||||||
@ -1626,6 +1626,14 @@ select option {
|
|||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Centred-narrow settings card — used for the standalone Clips Info
|
||||||
|
card where the content (a short list of supported URL formats) reads
|
||||||
|
better at a constrained width than across the full main column. */
|
||||||
|
.settings-card.centered {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
.settings-card h3 {
|
.settings-card h3 {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
@ -2221,6 +2229,23 @@ select option {
|
|||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Multi-line info text — preserves authored line breaks (white-space:
|
||||||
|
pre-line) so the Clips card can list URL formats one-per-line in
|
||||||
|
the HTML without separate <br>/<li> markup. */
|
||||||
|
.info-text {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
line-height: 1.6;
|
||||||
|
white-space: pre-line;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive KPI grid for the Stats Summary card — fits as many 180px
|
||||||
|
tiles per row as the column allows, with equal-share growth. */
|
||||||
|
.stats-summary-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Flush variant: the intro sits flush against the next sibling block
|
/* Flush variant: the intro sits flush against the next sibling block
|
||||||
(e.g. the stats summary grid) and gets its top breathing room from
|
(e.g. the stats summary grid) and gets its top breathing room from
|
||||||
the preceding section-header row rather than its own bottom margin. */
|
the preceding section-header row rather than its own bottom margin. */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user