white-space: nowrap for table in date-widget

This commit is contained in:
Ralf Becker 2012-02-23 13:40:26 +00:00
parent f72d95aac5
commit 57206cbac3
2 changed files with 7 additions and 1 deletions

View File

@ -337,6 +337,7 @@ class date_widget
$cell['type'] = 'template'; $cell['type'] = 'template';
$cell['name'] = $tpl->name; $cell['name'] = $tpl->name;
$cell['obj'] = &$tpl; $cell['obj'] = &$tpl;
$cell['span'] .= (strpos($cell['span'],',')===false?',':'').($cell['span']?' ':'').'eTdate';
return True; // extra Label is ok return True; // extra Label is ok
} }

View File

@ -144,4 +144,9 @@
padding-right: 15px; padding-right: 15px;
} }
/**
* class for table in data_widget
*/
.eTdate {
white-space: nowrap;
}