mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
fix for Chrome 76+ on Windows (clicking addressbook filters makes them jumpt down)
This commit is contained in:
parent
b8274fb083
commit
4d22932c7f
@ -109,9 +109,20 @@ div.city_state_postcode #addressbook-edit_adr_one_postalcode {margin-right: 5px
|
|||||||
.addressbookHooked .egwGridView_grid label>span.et2_link {
|
.addressbookHooked .egwGridView_grid label>span.et2_link {
|
||||||
display: none;
|
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\] {
|
select#addressbook-index_col_filter\[tid\] {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
@ -129,8 +129,23 @@ div.city_state_postcode #addressbook-edit_adr_one_postalcode {
|
|||||||
.addressbookHooked .egwGridView_grid label > span.et2_link {
|
.addressbookHooked .egwGridView_grid label > span.et2_link {
|
||||||
display: none;
|
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 {
|
#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\] {
|
select#addressbook-index_col_filter\[tid\] {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
|
Loading…
Reference in New Issue
Block a user