chore: update

This commit is contained in:
2026-03-30 20:02:39 +02:00
parent 32e129da31
commit 25cd6429f2
32 changed files with 1024 additions and 540 deletions
+43 -43
View File
@@ -37,7 +37,7 @@
width: 90%;
max-width: 900px;
max-height: 90vh;
background: linear-gradient(135deg, rgba(20, 20, 25, 0.98), rgba(15, 15, 20, 0.98));
background: linear-gradient(135deg, var(--surface), var(--bg));
border: 1px solid rgba(124, 58, 237, 0.3);
border-radius: 20px;
box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
@@ -67,8 +67,8 @@
justify-content: space-between;
align-items: center;
padding: 1.8rem 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(109, 40, 217, 0.04));
border-bottom: 1px solid var(--border);
background: var(--primary-soft);
flex-shrink: 0;
}
@@ -84,7 +84,7 @@
}
.modal-header h2 {
color: white;
color: var(--text);
font-size: 1.6rem;
font-weight: 700;
margin: 0;
@@ -92,7 +92,7 @@
}
.modal-subtitle {
color: #888;
color: var(--text-muted);
font-size: 0.9rem;
margin: 0.3rem 0 0 0;
font-weight: 500;
@@ -102,12 +102,12 @@
width: 40px;
height: 40px;
border-radius: 10px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
border: 1px solid rgba(255, 255, 255, 0.08);
background: var(--surface-2);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: #888;
color: var(--text-muted);
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
flex-shrink: 0;
@@ -128,7 +128,7 @@
overflow-y: auto;
padding: 2rem;
scrollbar-width: thin;
scrollbar-color: rgba(124, 58, 237, 0.4) rgba(255, 255, 255, 0.05);
scrollbar-color: rgba(124, 58, 237, 0.4) var(--surface-2);
}
.modal-content::-webkit-scrollbar {
@@ -136,7 +136,7 @@
}
.modal-content::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
background: var(--surface-2);
border-radius: 4px;
}
@@ -331,8 +331,8 @@
}
.detail-section {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
border: 1px solid rgba(255, 255, 255, 0.08);
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
}
@@ -345,7 +345,7 @@
display: flex;
align-items: center;
gap: 0.6rem;
color: white;
color: var(--text);
font-size: 0.95rem;
font-weight: 600;
text-transform: uppercase;
@@ -358,7 +358,7 @@
}
.detail-description {
color: #aaa;
color: var(--text-muted);
font-size: 1rem;
line-height: 1.6;
margin: 0;
@@ -403,8 +403,8 @@
align-items: center;
gap: 1rem;
padding: 0.8rem 1.2rem;
background: rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
}
@@ -415,7 +415,7 @@
.quantity-value,
.amount-value {
color: white;
color: var(--text);
font-size: 1.1rem;
font-weight: 600;
}
@@ -435,7 +435,7 @@
display: flex;
align-items: center;
gap: 0.6rem;
color: #aaa;
color: var(--text-muted);
font-size: 0.95rem;
font-weight: 500;
}
@@ -445,13 +445,13 @@
}
.date-text {
color: #aaa;
color: var(--text-muted);
font-size: 0.95rem;
margin: 0;
}
.no-data {
color: #666;
color: var(--text-muted);
font-style: italic;
margin: 0;
}
@@ -460,8 +460,8 @@
FORM SECTIONS (Create & Edit Modals)
============================================ */
.form-section {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
border: 1px solid rgba(255, 255, 255, 0.08);
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
@@ -472,7 +472,7 @@
}
.form-section h3 {
color: white;
color: var(--text);
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 1.2rem 0;
@@ -526,7 +526,7 @@
.form-group label {
display: block;
color: white;
color: var(--text);
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 0.6rem;
@@ -539,10 +539,10 @@
.form-group textarea {
width: 100%;
padding: 0.9rem 1.2rem;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
border: 1px solid rgba(255, 255, 255, 0.08);
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 10px;
color: white;
color: var(--text);
font-size: 0.95rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-family: inherit;
@@ -552,7 +552,7 @@
.form-group select:focus,
.form-group textarea:focus {
outline: none;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
background: var(--surface);
border-color: rgba(124, 58, 237, 0.5);
box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
@@ -602,7 +602,7 @@
}
.price-input-group label {
color: #888;
color: var(--text-muted);
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
@@ -708,8 +708,8 @@
justify-content: space-between;
align-items: center;
padding: 0.8rem 1.2rem;
background: rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@@ -727,13 +727,13 @@
}
.file-name {
color: white;
color: var(--text);
font-size: 0.9rem;
font-weight: 500;
}
.file-size {
color: #888;
color: var(--text-muted);
font-size: 0.8rem;
}
@@ -772,8 +772,8 @@
aspect-ratio: 1;
border-radius: 8px;
overflow: hidden;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.08);
background: var(--surface-2);
border: 1px solid var(--border);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@@ -859,8 +859,8 @@
display: flex;
gap: 1rem;
padding: 1.5rem 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
border-top: 1px solid var(--border);
background: var(--surface);
flex-shrink: 0;
}
@@ -888,15 +888,15 @@
}
.action-button.secondary {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
border-color: rgba(255, 255, 255, 0.08);
color: #888;
background: var(--surface-2);
border-color: var(--border);
color: var(--text-muted);
}
.action-button.secondary:hover:not(:disabled) {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
border-color: rgba(255, 255, 255, 0.15);
color: white;
background: var(--surface);
border-color: var(--border);
color: var(--text);
}
.action-button:disabled {