diff --git a/history.php b/history.php index 696bb40..054a8e9 100644 --- a/history.php +++ b/history.php @@ -191,6 +191,67 @@ $history = $stmt->fetchAll(); backdrop-filter: blur(5px); transition: all 0.3s; } + + .controls-row { + display: flex; + gap: 1rem; + margin-bottom: 1.5rem; + } + + .search-container { + flex: 1; + position: relative; + } + + .search-container i { + position: absolute; + left: 1rem; + top: 50%; + transform: translateY(-50%); + opacity: 0.5; + } + + .search-input { + width: 100%; + background: var(--glass-bg); + border: 1px solid var(--glass-border); + padding: 0.8rem 1rem 0.8rem 2.8rem; + border-radius: 12px; + color: var(--text-color); + font-family: inherit; + box-sizing: border-box; + outline: none; + transition: all 0.3s; + } + + .search-input:focus { + border-color: var(--primary-color); + background: rgba(255, 255, 255, 0.08); + } + + [data-theme="light"] .search-input:focus { + background: #fff; + } + + .download-btn { + background: var(--primary-color); + color: #fff; + border: none; + padding: 0 1.2rem; + border-radius: 12px; + cursor: pointer; + display: flex; + align-items: center; + gap: 0.5rem; + font-weight: 600; + transition: all 0.3s; + white-space: nowrap; + } + + .download-btn:hover { + opacity: 0.9; + transform: translateY(-2px); + }
@@ -208,7 +269,17 @@ $history = $stmt->fetchAll(); -