* fix tfoot style for todo method of my module: import button should not wrap.

This commit is contained in:
chenfeiCF
2016-04-26 10:42:37 +08:00
parent ff8c4bb5e9
commit 6409895aa2
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
.input-group .datepicker-wrapper{width: 110px!important;}
.input-group .datepicker-wrapper .form-control {max-width: 110px; line-height: 25px}
.input-group .datepicker-wrapper .form-control {max-width: 110px; line-height: 25px; height: 26px!important}
.input-group-btn {float: left}
+1 -1
View File
@@ -120,10 +120,10 @@
$actionLink = $this->createLink('todo', 'import2Today');
echo "<div class='input-group'>";
echo "<div class='datepicker-wrapper datepicker-date'>" . html::input('date', date('Y-m-d'), "class='form-control form-date'") . '</div>';
echo '</div>';
echo "<span class='input-group-btn'>";
echo html::commonButton($lang->todo->import, "onclick=\"setFormAction('$actionLink')\"");
echo '</span>';
echo '</div>';
}
?>
</div>