This commit is contained in:
Flatlogic Bot 2026-02-16 03:00:22 +00:00
parent edfdd98535
commit e735b95152
2 changed files with 24 additions and 3 deletions

View File

@ -306,6 +306,18 @@ body.dashboard-body {
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-new-election:hover {
background: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-new-election:active {
transform: translateY(0) scale(0.98);
}
.election-table {
@ -376,6 +388,17 @@ body.dashboard-body {
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.btn-update:hover {
transform: translateY(-1px);
filter: brightness(110%);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-update:active {
transform: translateY(0) scale(0.95);
}
.flatlogic-badge {

View File

@ -70,9 +70,7 @@ $projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Online Election System
<!-- Filters & Table Section -->
<div class="content-section animate-fade-in">
<div style="display: flex; justify-content: flex-end; gap: 12px; margin-bottom: 24px;">
<button type="button" class="btn-manage" onclick="window.print()"><i data-lucide="printer"></i> Print</button>
</div>
<table class="audit-table">
<thead>