fix margin of form submit in tables

This commit is contained in:
msquare 2018-12-09 12:51:48 +01:00
parent 252f003b94
commit 93b819025c
2 changed files with 5 additions and 1 deletions

View File

@ -102,7 +102,7 @@ function admin_arrive()
form_hidden('user', $usr->id), form_hidden('user', $usr->id),
form_submit( form_submit(
'submit', $usr->state->arrived ? __('reset') : __('arrived'), 'btn-xs', true, 'submit', $usr->state->arrived ? __('reset') : __('arrived'), 'btn-xs', true,
$usr->state->arrived ? 'danger' : 'primary' $usr->state->arrived ? 'default' : 'primary'
), ),
]); ]);

View File

@ -51,6 +51,10 @@ table a > .icon-icon_angel {
background-color: @text-color; background-color: @text-color;
} }
.table .form-group {
margin-bottom: 0;
}
.stats { .stats {
.make-md-column(3); .make-md-column(3);
.make-xs-column(6); .make-xs-column(6);