From 7ccb32747b02e34337991661d9a765764db8678e 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: Fridolin Somers --- 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 f964b2a089..c84f399ab7 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css +++ b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css @@ -223,6 +223,10 @@ a.tagnum { width: 31em; } +#cat_addbiblio .field_marceditor .flatpickr_wrapper { + display: none; +} + .mandatory_marker { color: red; } -- 2.39.5