From cab603e503ed7b9bcf8b09423efc1ce9c99567d7 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 18 May 2022 12:27:02 +0000 Subject: [PATCH] Bug 30797: (follow-up) Hide default Flatpickr clear-field button The basic MARC editor has its own button associated with each subfield for emptying the contents of the input. Since the Flatpickr "X" icon causes a layout problem and would be redundant, we can hide it on this page. Signed-off-by: Arthur Suzuki --- koha-tmpl/intranet-tmpl/prog/css/addbiblio.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css index 634f2b2af6..7503006b07 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css +++ b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css @@ -222,6 +222,10 @@ a.tagnum { width: 31em; } +#cat_addbiblio .field_marceditor .flatpickr_wrapper { + display: none; +} + .mandatory_marker { color: red; } -- 2.39.5