Feature: Página de sistema (DB info) + Fix tema claro
This commit is contained in:
@@ -49,6 +49,77 @@ $theme = $_COOKIE['theme'] ?? 'light';
|
||||
--bs-card-bg: #f5f3ed;
|
||||
--bs-border-color: #8b7355;
|
||||
--navbar-bg: linear-gradient(180deg, #3d4a32 0%, #2a3024 100%);
|
||||
--military-dark: #2a3024;
|
||||
--military-sand: #e8e4d9;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .nav-link-main,
|
||||
[data-bs-theme="light"] .dropdown-toggle-military {
|
||||
color: var(--military-sand) !important;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .nav-link-main:hover,
|
||||
[data-bs-theme="light"] .nav-link-main.active,
|
||||
[data-bs-theme="light"] .dropdown-toggle-military:hover,
|
||||
[data-bs-theme="light"] .dropdown-toggle-military.show {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .navbar-brand small {
|
||||
color: var(--military-sand);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .dropdown-menu-military {
|
||||
background: var(--bs-card-bg);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .dropdown-menu-military .dropdown-item {
|
||||
color: var(--bs-body-color);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .dropdown-menu-military .dropdown-item:hover {
|
||||
background: rgba(61, 74, 50, 0.3);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] #theme-toggle {
|
||||
color: var(--military-sand);
|
||||
border-color: rgba(255,255,255,0.3);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .text-muted {
|
||||
color: #5a6b4a !important;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .table thead th {
|
||||
background-color: rgba(61, 74, 50, 0.2);
|
||||
color: var(--bs-body-color);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .card-header {
|
||||
background-color: rgba(61, 74, 50, 0.15);
|
||||
color: var(--bs-body-color);
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .alert-danger {
|
||||
background-color: rgba(139, 58, 58, 0.15);
|
||||
color: #8b3a3a;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] .alert-success {
|
||||
background-color: rgba(74, 156, 140, 0.15);
|
||||
color: #2d6b61;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] ::-webkit-scrollbar-track {
|
||||
background: #d4d0c5;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] ::-webkit-scrollbar-thumb {
|
||||
background: #8b7355;
|
||||
}
|
||||
|
||||
[data-bs-theme="light"] ::-webkit-scrollbar-thumb:hover {
|
||||
background: var(--accent-orange);
|
||||
}
|
||||
|
||||
body {
|
||||
@@ -587,6 +658,8 @@ $theme = $_COOKIE['theme'] ?? 'light';
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item <?= $currentPage === 'translate_message.php' ? 'active' : '' ?>" href="/translate_message.php"><i class="bi bi-translate"></i> Traductor</a></li>
|
||||
<li><a class="dropdown-item <?= $currentPage === 'admin_send_message.php' ? 'active' : '' ?>" href="/admin_send_message.php"><i class="bi bi-lightning"></i> Enviar Directo</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item <?= $currentPage === 'system.php' ? 'active' : '' ?>" href="/admin/system.php"><i class="bi bi-hdd-stack"></i> Sistema</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
|
||||
Reference in New Issue
Block a user