Quick Fix: Restore Progress Bar with !important - Added !important back to critical properties - Something was overriding our styles without it

This commit is contained in:
dilgenfritz 2025-10-31 20:52:55 -05:00
parent 245c9fc5d9
commit f06ec70751
1 changed files with 12 additions and 9 deletions

View File

@ -1115,33 +1115,36 @@ body.cinema-mode {
.progress-container {
margin-bottom: 15px;
width: 100%;
min-width: 300px;
width: 100% !important;
min-width: 300px !important;
display: block !important;
}
.progress-bar {
position: relative;
height: 12px;
background: rgba(255, 255, 255, 0.3);
height: 12px !important;
background: rgba(255, 255, 255, 0.3) !important;
border-radius: 6px;
cursor: pointer;
margin-bottom: 8px;
transition: height 0.2s ease;
width: 100%;
min-width: 280px;
width: 100% !important;
min-width: 280px !important;
display: block !important;
}
.progress-bar:hover {
height: 16px;
height: 16px !important;
}
.progress-filled {
height: 100%;
background: linear-gradient(90deg, #ff6b9d, #c471ed);
height: 100% !important;
background: linear-gradient(90deg, #ff6b9d, #c471ed) !important;
border-radius: 6px;
width: 0%;
transition: width 0.1s ease;
position: relative;
display: block !important;
}
.progress-thumb {