From ca7baa3b0134d0c8a00536487ea00d11976ad340 Mon Sep 17 00:00:00 2001
From: Andreas Kienast <a.fernandez@scripting-base.de>
Date: Thu, 21 Mar 2024 14:01:26 +0100
Subject: [PATCH] [BUGFIX] linkvalidator: Add missing CSS class to "Toggle all"
 label

This commit adds a missing `form-check-label` CSS class to the label
element of the "Toggle all" field in the backend module of
EXT:linkvalidator to have pointer cursor there as well.

Resolves: #103452
Releases: main
Change-Id: I471a0607f6a3ce4c9c603aee59b0619a4d54cbf9
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83558
Tested-by: Oliver Bartsch <bo@cedev.de>
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Benjamin Franzke <ben@bnf.dev>
Tested-by: Benjamin Franzke <ben@bnf.dev>
---
 .../linkvalidator/Resources/Private/Partials/CheckOptions.html  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/linkvalidator/Resources/Private/Partials/CheckOptions.html b/typo3/sysext/linkvalidator/Resources/Private/Partials/CheckOptions.html
index 7db6f1fbec8f..5d84e8a3ebaa 100644
--- a/typo3/sysext/linkvalidator/Resources/Private/Partials/CheckOptions.html
+++ b/typo3/sysext/linkvalidator/Resources/Private/Partials/CheckOptions.html
@@ -14,7 +14,7 @@
             <th>
                 <div class="form-check form-switch">
                     <input id="options-by-type-toggle-all" class="options-by-type-toggle-all form-check-input" type="checkbox" title="{f:translate(key: 'LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.toggleall')}">
-                    <label for="options-by-type-toggle-all"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.toggleall"/></label>
+                    <label class="form-check-label" for="options-by-type-toggle-all"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.toggleall"/></label>
                 </div>
             </th>
             <td></td>
-- 
GitLab