Skip to content

Commit d9ef091

Browse files
authored
Update fast-search-card.js
1 parent 61bea20 commit d9ef091

File tree

1 file changed

+86
-0
lines changed

1 file changed

+86
-0
lines changed

dist/fast-search-card.js

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3517,6 +3517,92 @@ class FastSearchCard extends HTMLElement {
35173517
background: rgba(0, 122, 255, 0.8);
35183518
transform: translateY(-1px);
35193519
box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
3520+
}
3521+
3522+
3523+
/* Verbesserte Schedule-Liste (Timer-Design übernommen) */
3524+
.active-schedules {
3525+
margin-bottom: 16px;
3526+
min-height: 60px;
3527+
}
3528+
3529+
.schedules-header h4 {
3530+
font-size: 12px;
3531+
font-weight: 600;
3532+
color: var(--text-secondary);
3533+
margin: 0 0 8px 0;
3534+
text-transform: uppercase;
3535+
letter-spacing: 0.5px;
3536+
}
3537+
3538+
.schedules-list {
3539+
display: flex;
3540+
flex-direction: column;
3541+
gap: 8px;
3542+
}
3543+
3544+
.schedule-item {
3545+
display: flex;
3546+
align-items: center;
3547+
justify-content: space-between;
3548+
padding: 12px 16px;
3549+
background: rgba(120, 119, 198, 0.1); /* Lila für Zeitpläne */
3550+
border-radius: 12px;
3551+
border: 1px solid rgba(120, 119, 198, 0.2);
3552+
transition: all 0.2s ease;
3553+
}
3554+
3555+
.schedule-item:hover {
3556+
background: rgba(120, 119, 198, 0.15);
3557+
border-color: rgba(120, 119, 198, 0.3);
3558+
}
3559+
3560+
.schedule-info {
3561+
flex: 1;
3562+
}
3563+
3564+
.schedule-main .schedule-name {
3565+
font-size: 13px;
3566+
font-weight: 500;
3567+
color: var(--text-primary);
3568+
margin-bottom: 2px;
3569+
}
3570+
3571+
.schedule-details {
3572+
display: flex;
3573+
gap: 8px;
3574+
font-size: 11px;
3575+
color: var(--text-secondary);
3576+
}
3577+
3578+
.schedule-days {
3579+
color: #7877c6;
3580+
font-weight: 500;
3581+
}
3582+
3583+
.schedule-controls {
3584+
display: flex;
3585+
gap: 8px;
3586+
align-items: center;
3587+
}
3588+
3589+
.schedule-toggle-btn, .schedule-delete-btn {
3590+
background: none;
3591+
border: none;
3592+
cursor: pointer;
3593+
padding: 6px;
3594+
border-radius: 6px;
3595+
transition: all 0.2s ease;
3596+
color: var(--text-secondary);
3597+
}
3598+
3599+
.schedule-toggle-btn:hover {
3600+
background: rgba(255, 255, 255, 0.1);
3601+
}
3602+
3603+
.schedule-delete-btn:hover {
3604+
background: rgba(255, 82, 82, 0.2);
3605+
color: #ff5252;
35203606
}
35213607
35223608
</style>

0 commit comments

Comments
 (0)