Giant modif

This commit is contained in:
Damien LASSERRE 2011-06-29 14:40:33 +00:00
parent 1976df56ef
commit 86e13e619c
5 changed files with 46 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

View File

@ -0,0 +1,17 @@
/**
*
*/
function affCache(idpr, cache1, cache2)
{
var pr = document.getElementById(idpr);
var pr1 = document.getElementById(cache1);
var pr2 = document.getElementById(cache2);
if (pr.style.display == "") {
pr.style.display = "none";
} else {
pr.style.display = "";
pr1.style.display = "none";
pr2.style.display = "none";
}
}

View File

@ -27,3 +27,32 @@
{ {
padding-left:5px; padding-left:5px;
} }
#inDebug
{
float:left;
}
#debug
{
background-color:#FFFFCC;
padding:10px;
border:1px solid silver;
width:590px;
overflow:auto;
}
#debug_menu
{
float:left;
background-color:#FFFFCC;
border:1px solid silver;
width:150px;
height:25px;
margin-bottom:2px;
padding-top:9px;
}
#debug_menu:hover
{
background-color:#FFFF99;
cursor:pointer;
}