From 6a5330535b4d03bf857962867444e5f3e3e2334a 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. --- .../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 4db2b9e5d5c..9e2d34a26b8 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.30.2