remove br between shift filter checkboxes

This commit is contained in:
msquare 2018-01-22 20:45:31 +01:00
parent 46431e4408
commit 2e1c2cf3b5
9 changed files with 26 additions and 1 deletions

View File

@ -332,7 +332,7 @@ function make_select($items, $selected, $name, $title = null, $additionalButtons
. (in_array($i['id'], $selected) ? ' checked="checked"' : '')
. ' > ' . $i['name'] . '</label>'
. (!isset($i['enabled']) || $i['enabled'] ? '' : glyph('lock'))
. '</div><br />';
. '</div>';
}
$html .= '<div id="selection_' . $name . '" class="selection ' . $name . '">' . "\n";
$html .= implode("\n", $htmlItems);

View File

@ -6818,6 +6818,9 @@ body {
.panel-danger .panel-heading a {
color: #a94442;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6841,6 +6841,9 @@ body {
.panel-danger .panel-heading a {
color: #ffffff;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6818,6 +6818,9 @@ body {
.panel-danger .panel-heading a {
color: #694374;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6827,6 +6827,9 @@ body {
.panel-danger .panel-heading a {
color: #da1639;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6841,6 +6841,9 @@ body {
.panel-danger .panel-heading a {
color: #ffffff;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6821,6 +6821,9 @@ body {
.panel-danger .panel-heading a {
color: #331400;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -6845,6 +6845,9 @@ body {
.panel-danger .panel-heading a {
color: #ffffff;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;

View File

@ -100,6 +100,10 @@ body {
color: @panel-danger-text;
}
.selection .checkbox {
display: block;
}
.shift-calendar {
display: flex;
flex-direction: row;