Huge updates

This commit is contained in:
MarcWieland
2026-06-24 22:29:05 +02:00
parent 94c10aebdd
commit 0d59d521dc
12 changed files with 559 additions and 40 deletions
@@ -177,7 +177,19 @@
background: rgba(15, 23, 42, 0.2);
}
/* User profile card */
/* User profile link */
.user-profile-link {
text-decoration: none !important;
color: inherit !important;
display: block;
cursor: pointer;
}
.user-profile-link:hover .user-profile-card {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
}
.user-profile-card {
display: flex;
align-items: center;
@@ -248,6 +260,37 @@
}
::deep .version-link .mud-nav-link-text {
font-size: 0.75rem !important;
display: flex !important;
align-items: center;
gap: 8px;
}
::deep .version-badge {
background-color: #EF4444;
color: white;
font-size: 0.65rem;
font-weight: 700;
min-width: 16px;
height: 16px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
box-shadow: 0 0 4px rgba(239, 68, 68, 0.4);
animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
0% {
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
70% {
box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
}
}
/* --- COLLAPSED DRAWER (MINI STATE) STYLES --- */