Skip to content
Snippets Groups Projects
Commit ca7baa3b authored by Andreas Kienast's avatar Andreas Kienast Committed by Benjamin Franzke
Browse files

[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: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarBenjamin Franzke <ben@bnf.dev>
Tested-by: default avatarBenjamin Franzke <ben@bnf.dev>
parent 0c8317cd
Branches
Tags
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<th> <th>
<div class="form-check form-switch"> <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')}"> <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> </div>
</th> </th>
<td></td> <td></td>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment