- verbeteringen client

- vereenvoudiging van de ProgressTracker.vue door verwijderen van single line display
- toevoegen van busy animatie tijdens redeneren
This commit is contained in:
Josako
2025-07-21 16:01:26 +02:00
parent abc0a50dcc
commit f8f941d1e1
7 changed files with 57 additions and 51 deletions

View File

@@ -770,11 +770,6 @@
overflow-y: auto;
}
.progress-content.single-line {
max-height: 30px;
overflow: hidden;
padding: 8px 12px;
}
.progress-line {
padding: 4px 12px;
@@ -819,7 +814,31 @@
padding: 3px 10px;
}
.progress-content.single-line {
padding: 6px 10px;
}
/* Progress Icon Styles */
.progress-icon {
width: 20px;
height: 20px;
margin-right: 8px;
display: inline-block;
}
.working-animation {
width: 20px;
height: 20px;
}
/* Mobile responsiveness for progress icons */
@media (max-width: 768px) {
.progress-icon {
width: 16px;
height: 16px;
margin-right: 6px;
}
.working-animation {
width: 16px;
height: 16px;
}
}