From 97f86e3f09cbe0ec9b244daf099e4c44e93025e7 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Mon, 8 Oct 2018 11:08:29 +0100 Subject: [PATCH] Bug 21516: Fix incorrect CSS Override the height definition for notes fields. Test plan: (Before applying the patch) 1. Create an ILL request and modify it to add staff notes and OPAC notes, each notes field should be quite lengthy. 2. View the request and observe that the notes field lines overlap each other 3. Apply the patch 4. Observe that the notes fields now display correctly --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 10 ++++++++++ 1 file changed, 10 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 bcd21ae6f3..04a7340eb2 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4022,6 +4022,16 @@ span { div { height: 1em; margin-bottom: 1em; + pre { + height: auto; + } + } + } + + .rows { + div.notesstaff, + div.notesopac { + height: auto; } } -- 2.11.0