mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
Refactor: Update CSS variables
Fix Progress bar
This commit is contained in:
@@ -1,22 +1,34 @@
|
||||
/* Container pour isoler la progress bar */
|
||||
.progress-container {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 10px 0;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* Wrapper de la barre de téléchargement */
|
||||
#downloadProgressWrapper {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
height: 12px;
|
||||
background-color: #444;
|
||||
border-radius: 6px;
|
||||
background-color: var(--progress-bar-bg-color, #cccccc);
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
margin: 10px auto;
|
||||
margin: 0;
|
||||
display: none;
|
||||
box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Barre de progression */
|
||||
#downloadProgress {
|
||||
height: 100%;
|
||||
width: 0%;
|
||||
background-color: var(--video-info-link-color, #4caf50);
|
||||
border-radius: 6px 0 0 6px;
|
||||
background-color: var(--progress-bar-fill-color, #007bff);
|
||||
border-radius: 10px;
|
||||
transition: width 0.2s ease;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user