transition:background .4s;
}
+.button_passive {
+/* background:#dde; */
+/* cursor:pointer; */
+ text-align:center;
+ color:#228;
+ width:25px;
+ border:2px solid #eef;
+/* transition:background .4s; */
+}
table.fields td.button_move_deac {
background:#eef;
}
#theConsoleContainer {
- visibility:collapse;
+/* visibility:collapse; */
margin:5px;
padding:10px;
+/* width:820px; */
}
#advancedOptionsContainer {
- visibility:collapse;
+/* visibility:collapse; */
margin:5px;
padding:10px;
+ width:820px;
}
.td_solid {
$("#setupeditorlink").attr("href","editor.pl?file="+encodeURIComponent(setupFile));
$("#systemeditorlink").attr("href","editor.pl?file="+encodeURIComponent(systemFile));
+ $("#advancedOptionsContainer").hide();
+ $("#theConsoleContainer").hide();
+
+ $("#advoptbtn").click(function(){
+// toggleVis("advancedOptionsContainer");
+ $("#advancedOptionsContainer").fadeToggle();
+ var $target = $('html,body');
+ $target.animate({scrollTop: $target.height()}, 1000);
+ });
+ $("#debugbtn").click(function(){
+// toggleVis("theConsoleContainer");
+ $("#theConsoleContainer").fadeToggle();
+ var $target = $('html,body');
+ $target.animate({scrollTop: $target.height()}, 1000);
+ });
+
+
});
print "</script>";
# end of that story
- print "<input type='button' value='show/hide debug output' onclick='toggleVis(\"theConsoleContainer\")'>";
- print "<input type='button' value='show/hide advanced options' onclick='toggleVis(\"advancedOptionsContainer\")'>";
+ print "<input type='button' id='debugbtn' value='show/hide debug output' >";
+ print "<input type='button' id='advoptbtn' value='show/hide advanced options'>";
print "</td></tr>";
print "</table>";
unless($isHeritageFrom){
print qq%<td class='button_move' onclick='toggleVis("$conversionTableId","")'> = </td>%;
} else {
- print qq%<td> = </td>%;
+ print qq%<td class='button_passive'> = </td>%;
}
# print "<td>";
# print_conversionMenu($registerName,$fieldName);