From 83491a7773857d78cb2d708180cc4f7086a4269f Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 3 Nov 2022 22:08:14 +0000 Subject: [PATCH] Bug 32103: Remove flex from tab-content list elements To test: 1. Go to HTML customization, News, or Pages and make a new entry using the text editor ( CodeMirror ) 2. It is hard to focus on the Content field because the wrapper width is very small. 3. Apply patch and try again 4. The CodeMirror wrapper width should be normal again. 5. Check the other language tabs. 6. Also test the WYSIWYG editor, it should also be normal. Note: I added some CSS to make the labels appear bold. Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- .../prog/en/modules/tools/additional-contents.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt index 3a888a77a3..5dc254d815 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt @@ -30,6 +30,10 @@ .customisation-link:first-child::before { content: none; } + label[for^="title_"], + label[for^="content_"] { + font-weight: 700; + } @@ -277,7 +281,7 @@
[% FOR language IN languages %]
-
+
  1. -- 2.39.5