From 2b430250cb28b162a3b0c6c50846d2a22e648651 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 21 Aug 2020 16:33:57 +0100 Subject: [PATCH] Bug 26263: Add column width to itypecol We add a static width to the itypecol and set a matching max-width for the contained image to improve the layout of the results table for accessability and reactivity. --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 202878b534..b959283fd8 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -236,6 +236,13 @@ td { &.numcol { width: 3ch; } + + &.itypecol { + width: 36px; + img { + max-width: 32px; + } + } } tr { -- 2.20.1