Skip to content

Commit fc9241e

Browse files
authored
Merge pull request #17 from fritzmg/patch-2
Do not use m12 on checkboxes
2 parents 6f83250 + dfbe03a commit fc9241e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Resources/contao/dca/tl_article.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'label' => &$GLOBALS['TL_LANG']['tl_article']['allowAjaxReload'],
2525
'inputType' => 'checkbox',
2626
'eval' => [
27-
'tl_class' => 'clr w50 m12',
27+
'tl_class' => 'clr w50',
2828
],
2929
'sql' => "char(1) NOT NULL default ''",
3030
];

src/Resources/contao/dca/tl_content.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'inputType' => 'checkbox',
3535
'eval' => [
3636
'submitOnChange' => true,
37-
'tl_class' => 'clr w50 m12',
37+
'tl_class' => 'clr w50',
3838
],
3939
'sql' => "char(1) NOT NULL default ''",
4040
];
@@ -43,7 +43,7 @@
4343
'label' => &$GLOBALS['TL_LANG']['tl_content']['ajaxReloadFormSubmit'],
4444
'inputType' => 'checkbox',
4545
'eval' => [
46-
'tl_class' => 'w50 m12',
46+
'tl_class' => 'clr w50',
4747
],
4848
'sql' => "char(1) NOT NULL default ''",
4949
];

src/Resources/contao/dca/tl_module.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'inputType' => 'checkbox',
3535
'eval' => [
3636
'submitOnChange' => true,
37-
'tl_class' => 'clr w50 m12',
37+
'tl_class' => 'clr w50',
3838
],
3939
'sql' => "char(1) NOT NULL default ''",
4040
];
@@ -43,7 +43,7 @@
4343
'label' => &$GLOBALS['TL_LANG']['tl_module']['ajaxReloadFormSubmit'],
4444
'inputType' => 'checkbox',
4545
'eval' => [
46-
'tl_class' => 'w50 m12',
46+
'tl_class' => 'clr w50',
4747
],
4848
'sql' => "char(1) NOT NULL default ''",
4949
];

0 commit comments

Comments
 (0)