From f722bcab784508cf2cebe19e6a4a07ac028a759b Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 15 Dec 2021 15:42:32 +0000 Subject: [PATCH] Bug 19865: Add back horizontal scrollbar to cat_z3950_search To test: 1. Do a Z39.50/SRU search 2. In the search results click on MARC to get the MARC preview. Choose something with lots of MARC data so it is both wide and long. 3. See the Y axis scrollbar 4. You must scroll bottom of the modal to see the X axis scrollbar, annoying. 5. Apply patch 6. Regenrate the CSS files ( https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface ) 7. Try steps 1-4 again. This time you should see the X axis scrollbar without having to scroll to the bottom. 8. It's not a bad idea to test in multiple browsers. --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 8 ++++++++ 1 file changed, 8 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 fa3421dee1..1a8b530c7e 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1676,6 +1676,14 @@ input[type='text']:read-only:focus { overflow-y: auto; } +#cat_z3950_search { + #dataPreview { + pre { + overflow: unset; + } + } +} + .z3950checks { padding-left: 1em; } -- 2.20.1