#9031 Fixed css filter

This commit is contained in:
Daniel Maya 2022-05-31 17:09:15 +02:00
parent a2e036d279
commit f4784f4922
2 changed files with 36 additions and 13 deletions

View File

@ -33,7 +33,6 @@ form.flex-row ul {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
flex-wrap: wrap;
align-content: center; align-content: center;
justify-content: space-between; justify-content: space-between;
flex: 1; flex: 1;
@ -316,3 +315,31 @@ div.multi-response-buttons {
.event_detail_tab_menu li { .event_detail_tab_menu li {
max-width: 160px; max-width: 160px;
} }
.select_tags {
width: 200px;
}
@media screen and (max-width: 1400px) {
.select_tags {
width: 165px;
}
}
@media screen and (max-width: 1250px) {
.select_tags {
width: 125px;
}
}
@media screen and (max-width: 1100px) {
.select_tags {
width: 100px;
}
form.flex-row div.filter_input.large {
flex: 1;
min-width: 600px;
max-width: 100%;
}
}

View File

@ -611,9 +611,8 @@ $data[0] = html_print_select(
true, true,
true, true,
true, true,
'', 'select_tags',
false, false
'width: 200px;'
); );
$data[1] = html_print_image( $data[1] = html_print_image(
@ -654,9 +653,8 @@ $data[2] = html_print_select(
true, true,
true, true,
true, true,
'', 'select_tags',
false, false
'width: 200px;'
); );
$tabletags_with->data[] = $data; $tabletags_with->data[] = $data;
@ -688,9 +686,8 @@ $data[0] = html_print_select(
true, true,
true, true,
true, true,
'', 'select_tags',
false, false
'width: 200px;'
); );
$data[1] = html_print_image( $data[1] = html_print_image(
'images/darrowright.png', 'images/darrowright.png',
@ -727,9 +724,8 @@ $data[2] = html_print_select(
true, true,
true, true,
true, true,
'', 'select_tags',
false, false
'width: 200px;'
); );
$tabletags_without->data[] = $data; $tabletags_without->data[] = $data;
$tabletags_without->rowclass[] = ''; $tabletags_without->rowclass[] = '';