This commit is contained in:
2026-03-08 00:12:59 +01:00
parent 12c2ce4817
commit a43747568a
7 changed files with 157 additions and 19 deletions

View File

@@ -159,7 +159,7 @@ body {
}
.nav-dropdown-menu {
position: absolute;
top: calc(100% + 6px);
top: 100%;
left: 0;
min-width: 180px;
background: var(--panel);
@@ -168,7 +168,16 @@ body {
box-shadow: var(--shadow);
padding: 6px;
display: none;
z-index: 10;
z-index: 20;
margin-top: 6px;
}
.nav-dropdown-menu::before {
content: "";
position: absolute;
top: -8px;
left: 0;
right: 0;
height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
@@ -189,6 +198,54 @@ body {
grid-template-columns: 260px 1fr;
}
.console-fab {
position: fixed;
bottom: 18px;
left: 18px;
width: 52px;
height: 52px;
border-radius: 999px;
background: #0b0f17;
color: #ffffff;
border: 1px solid rgba(255,255,255,0.08);
box-shadow: var(--shadow);
display: none;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 50;
}
.console-fab.is-visible { display: inline-flex; }
.console-fab span { font-size: 1.2rem; }
.console-modal {
position: fixed;
inset: 0;
background: rgba(10, 14, 24, 0.55);
display: none;
align-items: center;
justify-content: center;
padding: 24px;
z-index: 45;
}
.console-modal.is-open { display: flex; }
.console-modal-card {
width: min(1200px, 96vw);
max-height: 92vh;
overflow: auto;
background: var(--panel);
border: 1px solid var(--line);
border-radius: 16px;
box-shadow: var(--shadow);
padding: 16px;
}
.console-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.sidebar {
padding: 16px;
display: flex;