refactor: Simplify FilterManager layout by conditionally rendering server statistics and search section based on advanced mode, and remove custom hover effects in App.css for cleaner UI
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 5m47s

This commit is contained in:
2025-07-14 15:00:39 +07:00
parent fd769dc81a
commit e6a9c17aa0
2 changed files with 199 additions and 201 deletions
-6
View File
@@ -22,12 +22,6 @@
animation: fadeIn 0.3s ease-out; animation: fadeIn 0.3s ease-out;
} }
/* Custom hover effects */
.btn:hover {
transform: translateY(-1px);
transition: all 0.2s ease;
}
/* Custom focus states */ /* Custom focus states */
.btn:focus, .btn:focus,
.form-control:focus, .form-control:focus,
+4
View File
@@ -662,6 +662,7 @@ function FilterManager() {
)} )}
{/* Панель статистики */} {/* Панель статистики */}
{mode === 'advanced' && (
<div className="row mb-4"> <div className="row mb-4">
<div className="col-md-3"> <div className="col-md-3">
<div className="card card-sm"> <div className="card card-sm">
@@ -736,8 +737,10 @@ function FilterManager() {
</div> </div>
</div> </div>
</div> </div>
)}
{/* Секция управления серверами */} {/* Секция управления серверами */}
{mode === 'advanced' && (
<div className="row mb-4"> <div className="row mb-4">
<div className="col-12"> <div className="col-12">
<div className="card"> <div className="card">
@@ -886,6 +889,7 @@ function FilterManager() {
</div> </div>
</div> </div>
</div> </div>
)}
{/* Секция фильтров выбранного сервера */} {/* Секция фильтров выбранного сервера */}
{selectedServer && ( {selectedServer && (