2026-04-04 18:33:45 +03:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
background: var(--bg-panel);
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headerLogo {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headerLogo svg {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headerVersion {
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
padding: 0.1rem 0.4rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-decoration: none;
|
2026-04-08 16:51:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* User menu */
|
|
|
|
|
|
|
|
|
|
.userMenu {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userAvatar {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--accent);
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: none;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: background 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userAvatar:hover {
|
|
|
|
|
background: var(--accent-dim);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userDropdown {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(100% + 8px);
|
|
|
|
|
right: 0;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
background: var(--bg-card);
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
|
|
|
|
|
z-index: 100;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
animation: fadeIn 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
from { opacity: 0; transform: translateY(-4px); }
|
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userInfo {
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userName {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userEmail {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userLogout {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
color: var(--danger);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userLogout:hover {
|
|
|
|
|
background: var(--bg-hover);
|
2026-04-04 18:33:45 +03:00
|
|
|
}
|