Merge pull request #1250 from kwemi/design-update-v1

Design update v1
This commit is contained in:
Nicolas Le Goff
2015-02-19 10:54:18 +01:00
6 changed files with 75 additions and 29 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -13,6 +13,10 @@ html, body {
z-index: 1;
}
#desktop {
min-width: 1100px;
}
*::-moz-selection, *::selection{
background: white;
color: black;
@@ -89,6 +93,13 @@ body {
min-height: 500px;
}
#mainContent {
top: 40px;
min-width:900px;
overflow-x:auto;
overflow-y:auto;
}
.PNB {
position: absolute;
top: 0;
@@ -249,6 +260,11 @@ span.ww_winTitle {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
margin:8px 0;
}
#idFrameC .ui-tabs .ui-tabs-nav li a.escamote {
margin:25px 25px 0 0;
}
#idFrameC .ui-tabs .ui-tabs-nav li:hover a {
@@ -607,17 +623,12 @@ div.diapo {
}
#answers_status{
top: auto;
left: 10px;
right: 10px;
height: 30px;
overflow: hidden;
width: 200px;
float: right;
}
#answers_status table{
width: 100%;
height: 20px;
margin: 5px 0;
}
#answers_status table tr{
@@ -629,10 +640,35 @@ div.diapo {
text-align: right;
}
#answers_status table tr td.infos{
#answers_status .infos {
text-align: left;
line-height: 18px;
font-size: 11px;
color: #949494;
}
#answers_status .infos .infoDialog {
float: left;
color: #949494;
margin-top: 2px;
margin-right: 30px;
}
#answers_status .infos .infoDialog span {
font-size: 20px;
display: block;
}
#answers_status .infos #nbrecsel {
float: left;
font-size: 20px;
margin-right: 10px;
height: 30px;
line-height: 36px;
vertical-align: middle;
}
/******* POPOVERS *************************************************************/
#tooltip .popover {
background-color:inherit;
@@ -658,7 +694,7 @@ div.diapo {
/******* idFrameT CSS *********************************************************/
#idFrameT {
margin-left: -29px;
margin-left: -20px;
}
.submenu .ui-buttonset{
@@ -953,6 +989,10 @@ div.diapo {
position: absolute; bottom: 0px;
}
#answers {
padding: 20px;
}
#answers .list {
position: relative;
float: left;
@@ -2714,6 +2754,17 @@ DIV.thesaurus U.w {
/******* MAINMENU ************************************************************/
#mainMenu {
height: 40px;
line-height: 40px;
vertical-align: middle;
}
#mainMenu li, #mainMenu li span {
height: 40px;
line-height: 40px;
}
#mainMenu, .publi_group {
background-color: #333333;
}

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());
}