Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
ff9a35d4
Commit
ff9a35d4
authored
Dec 14, 2019
by
Carsten Rose
Browse files
Fixed that label of 'checkbox' are bold and label of 'checkbox-inline' are normal.
parent
8b616dd1
Pipeline
#2963
passed with stages
in 3 minutes and 25 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Constants.php
View file @
ff9a35d4
...
...
@@ -1953,3 +1953,20 @@ const SETTING_TABLESORTER_MODE = 'mode';
const
SETTING_TABLESORTER_MODE_DELETE
=
'delete'
;
const
SETTING_TABLESORTER_CLEAR
=
'Clear'
;
// Object: Type
const
T_LABEL
=
't_label'
;
const
T_INPUT
=
't_input'
;
const
T_NOTE
=
't_note'
;
const
T_
=
't_note'
;
// Object: Item
const
I_TYPE
=
'type'
;
const
I_ID
=
'id'
;
const
I_VALUE
=
'value'
;
const
I_CLASS
=
'class'
;
const
I_ATTRIBUTE
=
'attribute'
;
// Object: extra for checkboxes
const
I_CHECKED
=
'checked'
;
const
I_UNCHECKED
=
'unchecked'
;
extension/Classes/Core/Form/Checkbox.php
View file @
ff9a35d4
...
...
@@ -368,6 +368,8 @@ class Checkbox {
}
/**
* Helper Function to collect hidden checkbox elements.
*
* @param array $formElement
* @param string $htmlFormElementName
* @param string $htmlHidden
...
...
less/qfq-bs.css.less
View file @
ff9a35d4
...
...
@@ -146,6 +146,7 @@ i.@{spinner_class} {
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-weight: normal;
}
.checkbox-inline input:read-only ~ .checkmark {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment