mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 06:53:15 +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{
|
#grid,#grid tr, #grid td{
|
||||||
z-index:50;
|
z-index:50;
|
||||||
|
text-align:center;
|
||||||
}
|
}
|
||||||
.diapo
|
.diapo
|
||||||
{
|
{
|
||||||
|
@@ -223,16 +223,16 @@ function pquit(){
|
|||||||
|
|
||||||
function resize(){
|
function resize(){
|
||||||
|
|
||||||
var h = bodySize.y = $(window).height() - $('#mainMenu').outerHeight();
|
var h = bodySize.y = $(document).height() - $('#mainMenu').outerHeight();
|
||||||
var w = bodySize.x = $(window).width();
|
var w = bodySize.x = $(document).width();
|
||||||
|
|
||||||
|
|
||||||
controlPubliSize();
|
controlPubliSize();
|
||||||
var rightw = w - 265;
|
var rightw = w - 265;
|
||||||
rightw = ((rightw) > 0) ? rightw : 0;
|
rightw = ((rightw) > 0) ? rightw : 0;
|
||||||
|
|
||||||
$('#container').height($(window).height());
|
$('#container').height($(document).height());
|
||||||
$('#container').width($(window).width());
|
$('#container').width($(document).width());
|
||||||
$('#right').width(rightw);
|
$('#right').width(rightw);
|
||||||
|
|
||||||
$('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20);
|
$('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20);
|
||||||
|
Reference in New Issue
Block a user