fix for Chrome 76+ on Windows (clicking addressbook filters makes them jumpt down)

This commit is contained in:
Ralf Becker 2019-09-25 13:15:01 +02:00
parent b8274fb083
commit 4d22932c7f
2 changed files with 29 additions and 3 deletions

View File

@ -109,9 +109,20 @@ div.city_state_postcode #addressbook-edit_adr_one_postalcode {margin-right: 5px
.addressbookHooked .egwGridView_grid label>span.et2_link {
display: none;
}
#addressbook-index .filtersContainer select {
max-width: 31.5% !important;
/**
* adjust width of select-boxes in nextmatch
*/
#addressbook-index .filtersContainer {
position: absolute;
top: 0; /* Required for Chrome 76+ on Windows */
left: 342px;
right: 215px;
}
#addressbook-index .filtersContainer select {
width: 31.5%;
}
/* category filter chosen. !important is neccessary to override the width set by chosen*/
#addressbook-index .nextmatch_header_row .et2_selectbox.select-cat {min-width:auto;width: 31.5% !important;}
select#addressbook-index_col_filter\[tid\] {
width: 100px;
}

View File

@ -129,8 +129,23 @@ div.city_state_postcode #addressbook-edit_adr_one_postalcode {
.addressbookHooked .egwGridView_grid label > span.et2_link {
display: none;
}
/**
* adjust width of select-boxes in nextmatch
*/
#addressbook-index .filtersContainer {
position: absolute;
top: 0;
/* Required for Chrome 76+ on Windows */
left: 342px;
right: 215px;
}
#addressbook-index .filtersContainer select {
max-width: 31.5% !important;
width: 31.5%;
}
/* category filter chosen. !important is neccessary to override the width set by chosen*/
#addressbook-index .nextmatch_header_row .et2_selectbox.select-cat {
min-width: auto;
width: 31.5% !important;
}
select#addressbook-index_col_filter\[tid\] {
width: 100px;