gcp reviewed

This commit is contained in:
fbsanchez 2020-12-03 18:00:20 +01:00
parent eb67b387b9
commit 34374159de
2 changed files with 8 additions and 1 deletions

View File

@ -1772,7 +1772,7 @@ function html_print_extended_select_for_time(
ob_start();
// Use the no_meta parameter because this image is only in the base console.
echo '<div id="'.$uniq_name.'_default" style="width:100%;display:inline">';
echo '<div id="'.$uniq_name.'_default" style="width:auto;display:inline">';
html_print_select(
$fields,
$uniq_name.'_select',

View File

@ -619,6 +619,13 @@ select:-internal-list-box {
align-items: flex-end;
}
.flex-row-start {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
}
.flex-space-around {
justify-content: space-around;
}