From 3fb7ad9655d9e4658674d3d03ce8a1637af821a8 Mon Sep 17 00:00:00 2001 From: Lester Caine Date: Thu, 18 Jun 2026 09:42:17 +0100 Subject: Add .fisheye-flow flex layout for auto_flow gallery Flex container with flex-wrap:wrap replaces the float+clear approach. Col-* items are flex children (float ignored), rows automatically equal-height. Gallery-box and gallery-img chain stretches to fill. Co-Authored-By: Claude Sonnet 4.6 --- css/config.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/css/config.css b/css/config.css index 55508a5..c827872 100644 --- a/css/config.css +++ b/css/config.css @@ -592,3 +592,20 @@ ul.data li.item:last-child { content: none !important; } } + +.fisheye-flow { + display: flex; + flex-wrap: wrap; +} +.fisheye-flow > [class*="col-"] { + display: flex; + flex-direction: column; +} +.fisheye-flow .gallery-box { + display: flex; + flex-direction: column; + flex: 1; +} +.fisheye-flow .gallery-img { + flex: 1; +} -- cgit v1.3