Przebudowa działania geolokalizacji. Zgoda na menu bez lokalizacji.

This commit is contained in:
2026-05-31 00:00:39 +02:00
parent 8de221ba79
commit 04aaa6e321
7 changed files with 517 additions and 28 deletions

View File

@@ -881,6 +881,44 @@ header {
font-weight: 500;
}
.nav-item.nav-locked {
opacity: 0.48;
filter: grayscale(0.35);
}
.nav-item.nav-locked .nav-label::after {
content: " 🔒";
font-size: 10px;
}
.menu-only-banner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 12px;
padding: 12px 14px;
border-radius: 12px;
background: rgba(226, 176, 126, 0.12);
border: 1px solid rgba(226, 176, 126, 0.28);
font-size: 13px;
color: var(--text-muted);
line-height: 1.45;
}
.menu-only-banner-btn {
flex-shrink: 0;
border: 1px solid rgba(226, 176, 126, 0.45);
background: rgba(226, 176, 126, 0.15);
color: var(--primary);
border-radius: 999px;
padding: 8px 14px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
}
.nav-item:active .nav-icon {
transform: scale(0.9);
}