From 70a743e417e1c1b2287a70a6b511bbfe3d27a16b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 26 Sep 2022 14:07:06 +0000 Subject: [PATCH] Bug 31559: Staff results page doesn't always use up full available screen width This patch adds an explicit "width: 100%" to tables which are contained within a #searchresults
. The change affects staff interface catalog search results and these other pages with the same markup: - Advanced MARC editor search results - Holds to pull - Patron search results To test, apply the patch and rebuild the staff interface CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client) - Test the catalog search results and other affected pages to confirm that the tables affected take up the full width of the page. Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index 9a111db1eb..def560e936 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2155,6 +2155,8 @@ li { } table { + width: 100%; + td { vertical-align: top; } -- 2.30.2