mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-16 14:33:14 +00:00
Merge pull request #649 from romainneutron/fix-1473
[3.8] Fix 1473 : Classic display on firefox is broken
This commit is contained in:
@@ -607,6 +607,7 @@ img.ui-datepicker-trigger{
|
||||
|
||||
#grid,#grid tr, #grid td{
|
||||
z-index:50;
|
||||
text-align:center;
|
||||
}
|
||||
.diapo
|
||||
{
|
||||
|
@@ -223,16 +223,16 @@ function pquit(){
|
||||
|
||||
function resize(){
|
||||
|
||||
var h = bodySize.y = $(window).height() - $('#mainMenu').outerHeight();
|
||||
var w = bodySize.x = $(window).width();
|
||||
var h = bodySize.y = $(document).height() - $('#mainMenu').outerHeight();
|
||||
var w = bodySize.x = $(document).width();
|
||||
|
||||
|
||||
controlPubliSize();
|
||||
var rightw = w - 265;
|
||||
rightw = ((rightw) > 0) ? rightw : 0;
|
||||
|
||||
$('#container').height($(window).height());
|
||||
$('#container').width($(window).width());
|
||||
$('#container').height($(document).height());
|
||||
$('#container').width($(document).width());
|
||||
$('#right').width(rightw);
|
||||
|
||||
$('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20);
|
||||
|
Reference in New Issue
Block a user