Bug-fixes

This commit is contained in:
2025-11-22 14:25:27 +01:00
parent 4303bfa2e6
commit 343d0d9809
4 changed files with 58 additions and 66 deletions

View File

@@ -215,18 +215,6 @@
padding: 24px;
color: white;
box-shadow: var(--ft-shadow-lg);
animation: ft-slideIn 0.3s ease;
}
@keyframes ft-slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.focus-task-break-card {
@@ -514,22 +502,22 @@
/* ============ Status Bar Timer ============ */
.focus-task-status-bar {
cursor: pointer;
padding: 0 8px;
display: flex;
align-items: center;
gap: 4px;
font-size: 12px;
transition: all 0.2s ease;
cursor: pointer;
padding: 0 8px;
display: flex;
align-items: center;
gap: 4px;
font-size: 12px;
transition: all 0.2s ease;
}
.focus-task-status-bar:hover {
color: var(--text-accent);
color: var(--text-accent);
}
.focus-task-status-bar.focus-task-status-active {
color: var(--text-accent);
font-weight: 500;
color: var(--text-accent);
font-weight: 500;
}
/* ============ Modal Styles ============ */
@@ -602,7 +590,7 @@
}
/* ============ Dark mode adjustments ============ */
.theme-dark .focus-task-floating-timer {
.theme-dark .focus-task-status-bar {
background: var(--background-secondary);
}
@@ -633,4 +621,4 @@
justify-content: flex-end;
margin-top: 8px;
}
}
}