diff --git a/package-lock.json b/package-lock.json index 4ee8fae..19da948 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "twitch-vod-manager", - "version": "5.0.14", + "version": "5.0.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "twitch-vod-manager", - "version": "5.0.14", + "version": "5.0.15", "license": "MIT", "dependencies": { "axios": "^1.16.1", diff --git a/package.json b/package.json index 7fe8ec2..bf46de2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "twitch-vod-manager", - "version": "5.0.14", + "version": "5.0.15", "description": "Twitch VOD Manager - Download Twitch VODs easily", "main": "dist/main.js", "author": "xRangerDE", diff --git a/src/styles.css b/src/styles.css index 9d678ea..bf1f866 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1491,8 +1491,15 @@ select option { /* The bulk-select checkbox overlaid on each VOD thumbnail top-left. Positioned absolutely so it sits over the artwork without affecting - the cards flex/info layout. */ -.vod-select-checkbox { + the cards flex/info layout. + WICHTIG: Selektor MUSS hoehere Spezifitaet haben als die globale + `input[type="checkbox"]` Regel (0,0,1,1), sonst gewinnt deren + `position: relative` + `width/height:16px` und die Checkbox wird zum + in-flow Flex-Item -> belegt eine 16px-Reihe oben in der Card und + schiebt das Thumbnail runter (grauer Balken ueber jedem VOD-Bild, + gemeldet in 5.0.14). `input[type="checkbox"].vod-select-checkbox` + = (0,0,2,1) schlaegt die globale Regel sauber. */ +input[type="checkbox"].vod-select-checkbox { position: absolute; top: 8px; left: 8px;