Browse code

Optimize widget spacing in BE

Benjamin Roth authored on24/04/2020 15:42:21
Showing1 changed files
... ...
@@ -116,7 +116,7 @@ $GLOBALS['TL_DCA']['tl_content']['fields']['es_animate'] = array
116 116
     'label'                   => &$GLOBALS['TL_LANG']['tl_content']['es_animate'],
117 117
     'exclude'                 => true,
118 118
     'inputType'               => 'checkbox',
119
-    'eval'                    => array('tl_class'=>'w50 m12', 'submitOnChange'=>true),
119
+    'eval'                    => array('tl_class'=>'w50', 'submitOnChange'=>true),
120 120
     'sql'                     => "char(1) NOT NULL default ''"
121 121
 );
122 122
 
... ...
@@ -125,7 +125,7 @@ $GLOBALS['TL_DCA']['tl_content']['fields']['es_animate_children'] = array
125 125
     'label'                   => &$GLOBALS['TL_LANG']['tl_content']['es_animate_children'],
126 126
     'exclude'                 => true,
127 127
     'inputType'               => 'checkbox',
128
-    'eval'                    => array('tl_class'=>'w50 m12'),
128
+    'eval'                    => array('tl_class'=>'w50'),
129 129
     'sql'                     => "char(1) NOT NULL default ''"
130 130
 );
131 131