This commit is contained in:
cay 2026-03-30 15:28:13 +01:00
parent 59e151158b
commit a4a8e2bf9e
2 changed files with 3 additions and 44 deletions

View File

@ -1,36 +1,4 @@
/* =========================
Quick Menu Toggle Button
========================= */
#quickmenu-toggle {
position: fixed;
bottom: 130px;
left: 430px;
z-index: 2000;
width: 36px;
height: 36px;
background: rgba(20, 12, 4, 0.75);
border: 2px solid #8b6a3c;
border-radius: 6px;
color: #f0d9a6;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: 0.2s;
backdrop-filter: blur(4px);
}
#quickmenu-toggle:hover {
background: rgba(107, 75, 42, 0.85);
box-shadow: 0 0 10px rgba(200, 160, 60, 0.4);
}
/* =========================
Quick Menu Panel
@ -43,7 +11,7 @@
z-index: 1999;
display: grid;
grid-template-columns: repeat(5, 80px);
grid-template-columns: repeat(10, 80px);
gap: 6px;
padding: 8px;
@ -57,11 +25,7 @@
transform: translateX(0);
}
#quickmenu-panel.hidden {
opacity: 0;
transform: translateX(-120%);
pointer-events: none;
}
/* =========================
Einzelne Slots
@ -111,7 +75,7 @@
.qm-slot-label {
font-family: "Cinzel", serif;
font-size: 10px;
font-size: 12px;
font-weight: bold;
color: #e7d9b4;
text-align: center;

View File

@ -613,11 +613,6 @@
</div>
</div>
<!-- ================================
Quick Menu Toggle
================================ -->
<button id="quickmenu-toggle" title="Menü ein/ausblenden">◄</button>
<!-- ================================
Quick Menu Panel
================================ -->