diff --git a/templates/index.html b/templates/index.html index d3ef577..97c46f9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -357,6 +357,31 @@ .scrollable-table-body { box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); } + + /* Стили для подсветки результатов поиска */ + .search-highlight { + background-color: #fff3cd !important; + border-left: 4px solid #ffc107 !important; + animation: searchPulse 0.5s ease-in-out; + } + + @keyframes searchPulse { + 0% { background-color: #fff3cd; } + 50% { background-color: #ffeaa7; } + 100% { background-color: #fff3cd; } + } + + /* Стили для полей поиска */ + .input-group .form-control:focus { + border-color: #86b7fe; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + } + + .input-group .btn-outline-secondary:hover { + background-color: #6c757d; + border-color: #6c757d; + color: white; + }
@@ -444,7 +469,16 @@