dist files for v1.4.0 built

This commit is contained in:
Kantine Wrapper
2026-02-22 21:40:41 +01:00
parent 4c55e34bc1
commit f19827ae91
11 changed files with 374 additions and 35 deletions

109
style.css
View File

@@ -437,7 +437,6 @@ body {
.modal-content {
background: var(--bg-card);
/* Changed from --surface */
width: 90%;
max-width: 400px;
border-radius: 16px;
@@ -446,6 +445,114 @@ body {
animation: modalSlide 0.3s ease-out;
}
/* History Modal specific */
.history-modal-content {
max-width: 600px;
max-height: 85vh;
display: flex;
flex-direction: column;
}
.history-modal-content .modal-body {
overflow-y: auto;
padding: 0; /* Padding is handled by inner elements */
}
/* History Styles */
.history-month-group {
margin-bottom: 24px;
}
.history-month-header {
position: sticky;
top: 0;
background: var(--bg-card);
padding: 12px 20px;
margin: 0;
font-size: 1.1rem;
font-weight: 700;
color: var(--text-primary);
border-bottom: 1px solid var(--border-color);
border-top: 1px solid var(--border-color);
z-index: 10;
}
.history-month-group:first-child .history-month-header {
border-top: none;
}
.history-week-group {
padding: 16px 20px 8px;
}
.history-week-header {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.95rem;
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 12px;
}
.history-week-summary {
font-size: 0.85rem;
font-weight: 500;
background: rgba(100, 116, 139, 0.1);
padding: 4px 10px;
border-radius: 12px;
}
.history-items {
display: flex;
flex-direction: column;
gap: 8px;
}
.history-item {
display: grid;
grid-template-columns: 50px 1fr auto;
align-items: center;
gap: 12px;
padding: 10px 12px;
background: var(--bg-body);
border-radius: 8px;
border: 1px solid var(--border-color);
}
.history-item-date {
font-size: 0.85rem;
color: var(--text-secondary);
font-weight: 500;
}
.history-item-details {
display: flex;
flex-direction: column;
gap: 4px;
}
.history-item-name {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-primary);
}
.history-item-price {
font-weight: 600;
color: var(--text-primary);
}
.history-item-name-cancelled {
text-decoration: line-through;
color: var(--text-secondary);
}
.history-item-price-cancelled {
text-decoration: line-through;
color: var(--text-secondary);
}
@keyframes modalSlide {
from {
transform: translateY(20px);