This commit is contained in:
Cay 2026-03-18 11:51:14 +00:00
parent ce4bc12389
commit e86d39a174
2 changed files with 13 additions and 5 deletions

View File

@ -538,6 +538,12 @@ body {
}
/* BEREIT Button */
#ready-timer-box .bereit-btn {
width: 100%;
margin-top: 4px;
font-size: 15px;
padding: 10px 20px;
}
.bereit-btn {
background: linear-gradient(135deg, #1a7a1a, #27ae60);
border: 2px solid rgba(100, 255, 100, 0.5);
@ -592,14 +598,16 @@ body {
background: rgba(0, 0, 0, 0.55);
backdrop-filter: blur(2px);
cursor: not-allowed;
}
/* ── Bereit-Timer Box (zentriert im Lock-Overlay) ── */
#board-lock-overlay {
display: flex;
align-items: center;
justify-content: center;
}
#board-lock-overlay #ready-timer-box {
cursor: default;
pointer-events: all;
}
/* ── Bereit-Timer Box ── */
#ready-timer-box {
display: flex;
flex-direction: column;

View File

@ -35,7 +35,6 @@
</div>
<div class="top-bar-actions">
<button class="bereit-btn" id="bereit-btn" onclick="handleBereit()">✔ BEREIT</button>
<button class="end-turn-btn" id="end-turn-btn" disabled>Zug beenden</button>
<button class="aufgeben-btn" id="aufgeben-btn" onclick="handleAufgeben()">🏳 Aufgeben</button>
</div>
@ -54,6 +53,7 @@
<div class="ready-pip" id="pip-player1">⬜ Spieler 1</div>
<div class="ready-pip" id="pip-player2">⬜ Spieler 2</div>
</div>
<button class="bereit-btn" id="bereit-btn" onclick="handleBereit()">✔ BEREIT</button>
</div>
</div>