mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Fix sub-templates missing proper height in idots framework
This commit is contained in:
parent
2139812849
commit
ab1bae8a35
@ -14,7 +14,7 @@ td.addressbook_sidebox_header {
|
|||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
div#addressbook-view.et2_container {
|
div#addressbook-view.et2_container {
|
||||||
height: 0;
|
height: 0 !important;
|
||||||
}
|
}
|
||||||
td.addressbook_sidebox_toolbar {
|
td.addressbook_sidebox_toolbar {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
@ -76,7 +76,7 @@ egw_LAB.wait(function() {
|
|||||||
$j('#divStatusBar').height()-$j('#divAppboxHeader').height()-$j('#divPoweredBy').height()-20;
|
$j('#divStatusBar').height()-$j('#divAppboxHeader').height()-$j('#divPoweredBy').height()-20;
|
||||||
//console.log('setting height of '+appbox_height);
|
//console.log('setting height of '+appbox_height);
|
||||||
$j('#divAppbox').css('min-height', appbox_height+'px');
|
$j('#divAppbox').css('min-height', appbox_height+'px');
|
||||||
$j('.et2_container').last().height(appbox_height-7);
|
$j('.et2_container').height(appbox_height-7);
|
||||||
});
|
});
|
||||||
$j(window).resize();
|
$j(window).resize();
|
||||||
$j(window).load(function(){ // fixes sometimes not called resize, probably due to timing issues
|
$j(window).load(function(){ // fixes sometimes not called resize, probably due to timing issues
|
||||||
|
Loading…
Reference in New Issue
Block a user