style: memperbaiki warna pada edit card penduduk dan rumah ibadah

This commit is contained in:
Romeo3
2026-06-09 16:40:53 +07:00
parent bccc104e7e
commit bd8a64e1cf
2 changed files with 43 additions and 244 deletions
+36 -2
View File
@@ -602,7 +602,7 @@ body {
.info-label {
font-weight: 600;
color: var(--text-muted);
color: var(--text-secondary);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.8px;
@@ -613,7 +613,7 @@ body {
.info-value {
font-size: 13px;
font-weight: 500;
color: var(--text-primary);
color: var(--text-muted);
}
/* Popup form inputs */
@@ -2183,6 +2183,7 @@ body {
border-color: rgba(16, 185, 129, 0.2);
background: rgba(16, 185, 129, 0.03);
}
.stat-card.stat-success .stat-num {
color: #10b981;
}
@@ -2191,6 +2192,7 @@ body {
border-color: rgba(239, 68, 68, 0.2);
background: rgba(239, 68, 68, 0.03);
}
.stat-card.stat-danger .stat-num {
color: #ef4444;
}
@@ -2315,6 +2317,7 @@ body {
.marker-cluster-small {
background-color: rgba(59, 130, 246, 0.4) !important;
}
.marker-cluster-small div {
background-color: rgba(37, 99, 235, 0.95) !important;
color: white !important;
@@ -2324,6 +2327,7 @@ body {
.marker-cluster-medium {
background-color: rgba(37, 99, 235, 0.4) !important;
}
.marker-cluster-medium div {
background-color: rgba(29, 78, 216, 0.95) !important;
color: white !important;
@@ -2333,6 +2337,7 @@ body {
.marker-cluster-large {
background-color: rgba(30, 58, 138, 0.4) !important;
}
.marker-cluster-large div {
background-color: rgba(30, 64, 175, 0.95) !important;
color: white !important;
@@ -2343,4 +2348,33 @@ body {
font-family: var(--font-mono) !important;
font-size: 12px !important;
box-shadow: 0 0 10px rgba(37, 99, 235, 0.5) !important;
}
/* Menghapus padding agar header hijau bisa mentok ke atas dan samping */
.leaflet-popup-content-wrapper {
padding: 0 !important;
border-radius: 12px !important;
overflow: hidden !important;
/* Agar sudut tetap melengkung walau header mentok */
background-color: #1e2130 !important;
/* Warna gelap utama body popup */
border: none !important;
}
/* Menghapus margin bawaan konten */
.leaflet-popup-content {
margin: 0 !important;
width: 280px !important;
/* Sesuaikan lebar popup */
}
/* Mengubah warna panah di bawah popup agar menyatu dengan body */
.leaflet-popup-tip {
background-color: #1e2130 !important;
}
/* Menyesuaikan tombol silang (close/x) bawaan Leaflet */
.leaflet-popup-close-button {
color: #ffffff !important;
padding: 4px 8px !important;
}