diff options
| author | Gustavo dos Santos <gustavobarbosavs@gmail.com> | 2026-03-18 11:46:05 +0000 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-18 08:21:42 -0400 |
| commit | f17171d3e1339a11e1db8597de75bf12325ea0ea (patch) | |
| tree | 87d6f87a876ef41b7a4f70610b54330204a16242 /static | |
| parent | 81ba9021a24254b8c3c4bbb21c6c0a8d07c3de68 (diff) | |
| download | omnisearch-f17171d3e1339a11e1db8597de75bf12325ea0ea.tar.gz | |
Updated the page buttons
Diffstat (limited to 'static')
| -rw-r--r-- | static/main.css | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/static/main.css b/static/main.css index fd69035..a458541 100644 --- a/static/main.css +++ b/static/main.css @@ -360,9 +360,9 @@ h1 span { .pagination-btn { background: var(--bg-card); - color: var(--text-primary); + color: var(--text-secondary); border: 1px solid var(--border); - padding: 8px 16px; + padding: 4px 8px; border-radius: 8px; text-decoration: none; font-size: 0.9rem; @@ -376,11 +376,26 @@ h1 span { border-color: var(--text-secondary); } + .pagination-current { - color: var(--text-secondary); - font-size: 0.9rem; + background: var(--bg-card); + color: var(--text-primary); + border: 1px solid var(--border); + padding: 4px 12px; + border-radius: 8px; + text-decoration: none; + font-size: 1.2rem; + font-weight: 600; + transition: all 0.2s; + touch-action: manipulation; } +.pagination-current:hover { + background: var(--border); + border-color: var(--text-secondary); +} + + @media (max-width:1200px) { .content-layout { grid-template-columns:1fr; |
