diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-06-18 11:58:24 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-06-18 11:58:24 +0100 |
| commit | fe323032e5d0961857d17e0aaae2529d5cc081a9 (patch) | |
| tree | 7126c60b557dca99c7c3d8d316e9fef89133cad3 | |
| parent | 7a77cfa6ccb6ef9a6c0f4944e4950ac6a0f43ecc (diff) | |
| download | themes-fe323032e5d0961857d17e0aaae2529d5cc081a9.tar.gz themes-fe323032e5d0961857d17e0aaae2529d5cc081a9.tar.bz2 themes-fe323032e5d0961857d17e0aaae2529d5cc081a9.zip | |
Fix paginator layout: flexbox replaces float-based pull-left/pull-right
width:100% ensures paginator claims its own row inside any flex parent
(fisheye-flow), making it visible regardless of div context. Flexbox
justify-content:space-between replaces Bootstrap float layout so page
buttons and goto-form stay on one line at normal widths.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rw-r--r-- | css/config.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/css/config.css b/css/config.css index eb890fa..18cf977 100644 --- a/css/config.css +++ b/css/config.css @@ -593,6 +593,20 @@ ul.data li.item:last-child { } } +.paginator { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + gap: 0.5rem; +} +.paginator ul.pagination, +.paginator > div.pagination { + margin: 0; + float: none; +} + .fisheye-flow { display: flex; flex-wrap: wrap; |
