"Update theme

This commit is contained in:
2025-05-29 15:17:26 +02:00
parent 998244db68
commit f927048570
2 changed files with 425 additions and 197 deletions

View File

@@ -713,4 +713,271 @@
opacity: 1;
transform: scale(1);
}
}
/* Professional Mini Button Styles */
.btn-professional-mini {
background: rgba(59, 130, 246, 0.1);
color: var(--mb-primary);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 0.75rem;
padding: 0.5rem 1rem;
font-weight: 500;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.025em;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.dark .btn-professional-mini {
background: rgba(59, 130, 246, 0.2);
border-color: rgba(59, 130, 246, 0.3);
}
.btn-professional-mini:hover {
background: rgba(59, 130, 246, 0.2);
border-color: var(--mb-primary);
transform: translateY(-1px);
}
.dark .btn-professional-mini:hover {
background: rgba(59, 130, 246, 0.3);
}
/* Danger Mini Button */
.btn-danger-professional-mini {
background: rgba(239, 68, 68, 0.1);
color: #dc2626;
border: 1px solid rgba(239, 68, 68, 0.2);
border-radius: 0.5rem;
padding: 0.5rem;
font-weight: 500;
font-size: 0.75rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.dark .btn-danger-professional-mini {
background: rgba(239, 68, 68, 0.2);
color: #ef4444;
border-color: rgba(239, 68, 68, 0.3);
}
.btn-danger-professional-mini:hover {
background: rgba(239, 68, 68, 0.2);
border-color: #dc2626;
transform: translateY(-1px) scale(1.05);
}
.dark .btn-danger-professional-mini:hover {
background: rgba(239, 68, 68, 0.3);
border-color: #ef4444;
}
/* Success Button */
.btn-success-professional {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
border: none;
border-radius: 1rem;
padding: 0.75rem 2rem;
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.025em;
text-transform: uppercase;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-success-professional::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.btn-success-professional:hover::before {
left: 100%;
}
.btn-success-professional:hover {
background: linear-gradient(135deg, #059669 0%, #047857 100%);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.btn-success-professional:active {
transform: translateY(0);
}
/* Danger Button */
.btn-danger-professional {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
border: none;
border-radius: 1rem;
padding: 0.75rem 2rem;
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.025em;
text-transform: uppercase;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-danger-professional::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.btn-danger-professional:hover::before {
left: 100%;
}
.btn-danger-professional:hover {
background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}
.btn-danger-professional:active {
transform: translateY(0);
}
/* Filter Button Mercedes */
.filter-btn-mercedes {
background: transparent;
color: var(--light-text-muted);
border: none;
border-radius: 0.75rem;
padding: 0.5rem 1rem;
font-weight: 500;
font-size: 0.875rem;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.dark .filter-btn-mercedes {
color: var(--dark-text-muted);
}
.filter-btn-mercedes:hover {
color: var(--light-text-primary);
background: rgba(255, 255, 255, 0.1);
}
.dark .filter-btn-mercedes:hover {
color: var(--dark-text-primary);
background: rgba(255, 255, 255, 0.05);
}
.filter-btn-mercedes.active {
background: var(--mb-primary);
color: white;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
/* Status Dots */
.status-dot {
width: 0.75rem;
height: 0.75rem;
border-radius: 50%;
display: inline-block;
position: relative;
}
.status-dot.status-online {
background: #10b981;
box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.status-dot.status-offline {
background: #ef4444;
box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.status-dot.status-online::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 50%;
background: inherit;
animation: pulse-professional 2s infinite;
}
/* Professional Shadow */
.professional-shadow {
box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}
.dark .professional-shadow {
box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}
/* Professional Accent Colors */
.text-professional-accent {
color: var(--mb-accent);
}
.bg-professional-accent {
background-color: var(--mb-accent);
}
/* Animate Spin Slow */
.animate-spin-slow {
animation: spin 3s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes pulse-professional {
0%, 100% {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
50% {
opacity: 0.5;
transform: translate(-50%, -50%) scale(1.2);
}
}