Calendar: drop month grid, show schedule-webhook event list directly; date format dd.mm.yyyy

This commit is contained in:
Kato
2026-09-05 19:08:25 +00:00
parent 3d1b577cb1
commit a4d8d623a5
3 changed files with 16 additions and 150 deletions
+1 -59
View File
@@ -1479,65 +1479,7 @@ TELEGRAM BANNER
font-weight: 700;
color: #1c1e21;
}
.calendar-nav {
background: #f0f2f5;
border: none;
border-radius: 8px;
width: 32px;
height: 32px;
font-size: 1.1rem;
line-height: 1;
color: #1c1e21;
cursor: pointer;
transition: background 0.2s ease;
}
.calendar-nav:hover { background: #e4e6eb; }
.calendar-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-size: 0.75rem;
font-weight: 600;
color: #65676b;
margin-bottom: 4px;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
}
.calendar-day {
aspect-ratio: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 8px;
font-size: 0.85rem;
color: #1c1e21;
position: relative;
}
.calendar-day.empty { visibility: hidden; }
.calendar-day.today {
background: #e7f3ff;
color: #1877f2;
font-weight: 700;
}
.calendar-day.has-event { font-weight: 700; }
.calendar-dots {
display: flex;
gap: 2px;
position: absolute;
bottom: 3px;
}
.calendar-dots i {
width: 5px;
height: 5px;
border-radius: 50%;
background: #1877f2;
display: inline-block;
}
.calendar-events { margin-top: 12px; border-top: 1px solid #e4e6eb; padding-top: 10px; }
.calendar-events { border-top: 1px solid #e4e6eb; padding-top: 10px; }
.calendar-events-hint { color: #65676b; font-size: 0.85rem; text-align: center; margin: 0; }
.calendar-event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.calendar-event-list li {