Skip to content
Snippets Groups Projects
Commit ff9a35d4 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Fixed that label of 'checkbox' are bold and label of 'checkbox-inline' are normal.

parent 8b616dd1
No related branches found
No related tags found
1 merge request!221B9720 checkbox various setups
Pipeline #2963 passed
...@@ -1953,3 +1953,20 @@ const SETTING_TABLESORTER_MODE = 'mode'; ...@@ -1953,3 +1953,20 @@ const SETTING_TABLESORTER_MODE = 'mode';
const SETTING_TABLESORTER_MODE_DELETE = 'delete'; const SETTING_TABLESORTER_MODE_DELETE = 'delete';
const SETTING_TABLESORTER_CLEAR = 'Clear'; 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';
...@@ -368,6 +368,8 @@ class Checkbox { ...@@ -368,6 +368,8 @@ class Checkbox {
} }
/** /**
* Helper Function to collect hidden checkbox elements.
*
* @param array $formElement * @param array $formElement
* @param string $htmlFormElementName * @param string $htmlFormElementName
* @param string $htmlHidden * @param string $htmlHidden
......
...@@ -146,6 +146,7 @@ i.@{spinner_class} { ...@@ -146,6 +146,7 @@ i.@{spinner_class} {
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
user-select: none; user-select: none;
font-weight: normal;
} }
.checkbox-inline input:read-only ~ .checkmark { .checkbox-inline input:read-only ~ .checkmark {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment