Compare commits

..

No commits in common. "fdeb1697de3f2c99be34b07f69ecb74746249e28" and "c7d0bb7e30cb189182888cd76d26bdb10b8bf5f0" have entirely different histories.

3 changed files with 21 additions and 26 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "twitch-vod-manager",
"version": "4.6.28",
"version": "4.6.27",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "twitch-vod-manager",
"version": "4.6.28",
"version": "4.6.27",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",

View File

@ -1,6 +1,6 @@
{
"name": "twitch-vod-manager",
"version": "4.6.28",
"version": "4.6.27",
"description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js",
"author": "xRangerDE",

View File

@ -126,28 +126,9 @@ body {
}
.streamer-item.active {
background: linear-gradient(90deg, rgba(145, 71, 255, 0.28) 0%, rgba(145, 71, 255, 0.08) 100%);
background: rgba(145, 71, 255, 0.2);
color: var(--text);
border-left: 3px solid var(--accent);
box-shadow: inset 0 0 0 1px rgba(145, 71, 255, 0.18);
position: relative;
}
.streamer-item.active::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 60%;
background: var(--accent);
border-radius: 2px 0 0 2px;
opacity: 0.85;
}
.streamer-item.active .streamer-name {
font-weight: 600;
}
.streamer-item .remove {
@ -1513,9 +1494,23 @@ select option {
.status-dot.connected { background: var(--success); }
.status-dot.error { background: var(--error); }
/* Old generic scrollbar rules were dead superseded by the
purple-themed *::-webkit-scrollbar block further down the file.
Removed to avoid confusion when someone greps for scrollbar styles. */
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.15);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.25);
}
/* Update Banner */
.update-banner {