From 18b9a4efb6b2b05ab3eb806a4e83ae863c4df7af Mon Sep 17 00:00:00 2001
From: Lucas Gass <lucas@bywatersolutions.com>
Date: Fri, 14 Oct 2022 23:21:44 +0000
Subject: [PATCH] Bug 31808: Set fieldset.rows li width to 100%

To test:
1. Find an item and try placing a hold.
2. Under 'Hold details' the first list element is the patron name, it displays far to the right in an unusual location.
3. Apply patch and regenerate CSS ( https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface )
4. Try steps 1 & 2 again.
5. The name should display correctly.
---
 koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss | 1 +
 1 file changed, 1 insertion(+)

diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss
index 68befb218b..0421fe3867 100644
--- a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss
+++ b/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss
@@ -30,6 +30,7 @@ fieldset.rows ol {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
+        width: 100%;
 
         & > * {
             margin: 0 $gap-width 0 0;
-- 
2.30.2