}
+table {
+ font-size: 10pt;
+
+}
+
body.index {
background:#f5f5f5 url("/layout/background.png") fixed no-repeat;
}
/* float:left; */
background:#f9f9f9;
border-bottom:1px solid #ccc;
- padding:0px 10px 5px 10px;
- margin: 10px 0 10px -25px;
+ padding:10px 10px 5px 10px;
+ margin: 0px 0 10px -25px;
}
h3 {
print "<tr>";
print <<EOF;
-<td onClick='toggleVis("$flistid")' class='regheader'> + </td>
+<td onClick='toggleVis("$flistid",this)' class='regheader'> + </td>
EOF
print "<td title=\"$registerDescr\">$registerName</td>";
#print "<td>$registerId</td>";
}
-function toggleVis(elementId) {
+function toggleVis(elementId,t) {
if(document.getElementById(elementId)){
if( document.getElementById(elementId).style.visibility == "visible") {
document.getElementById(elementId).style.visibility = "collapse";
visHash[elementId]=false;
+ t.innerHTML = " + ";
} else {
document.getElementById(elementId).style.visibility = "visible" ;
visHash[elementId]=true;
+ t.innerHTML = " - ";
}
}
}
-body {
- color: black; background-color: white;
- font-family: Helvetica,Arial,sans-serif;
- font-size: 12;
- margin: 0; padding: 1em;
-}
-
-table {
- font-size: 12;
-}
-
#debug {
position:absolute;
- top:10px;
+ top:100px;
left:800px;
width:220px;
padding:10px;
+ background:#fee;
margin:0px;
}
float:left;
position:relative;
width:700px;
+ min-height:50px;
padding:10px;
margin:50px 0 0 20px;
border:2px solid #EEAA00;
border-radius:20px;
+ background:white;
box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px #ea0 inset;
}
margin:50px 10px 0 20px ;
border:2px solid #EE0000;
border-radius:20px;
+ background:white;
box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px red inset;
}
margin:50px 10px 0 20px;
border:2px solid #0000EE;
border-radius:20px;
+ background:white;
box-shadow: 0 0 5px 5px #aaa, 0 0 4px 1px blue inset;
}
}
div.header {
- font-size:14pt;
+ font-size:13pt;
position:absolute;
- top:-20px;
- color:#666;
-}
+ top:-22px;
+ color:#444;
+ z-index:-1;
+
+ }