Fix broken layout

fix #1
This commit is contained in:
Olivier Mayer
2015-02-19 11:04:43 +09:00
parent 13a87a6181
commit 50ed2262ed
2 changed files with 7 additions and 2 deletions

View File

@@ -13,6 +13,10 @@ html, body {
z-index: 1;
}
#desktop {
min-width: 1100px;
}
*::-moz-selection, *::selection{
background: white;
color: black;
@@ -658,7 +662,7 @@ div.diapo {
/******* idFrameT CSS *********************************************************/
#idFrameT {
margin-left: -29px;
margin-left: -20px;
}
.submenu .ui-buttonset{

View File

@@ -517,10 +517,11 @@ function initAnswerForm() {
function answerSizer() {
var el = $('#idFrameC').outerWidth();
if (!$.support.cssFloat) {
$('#idFrameC .insidebloc').width(el - 56);
// $('#idFrameC .insidebloc').width(el - 56);
}
var widthA = Math.round(bodySize.x - el - 10);
$('#rightFrame').width(widthA);
$('#rightFrame').css('left', $('#idFrameC').width());
}