reserve room where sidebar will later be painted

This commit is contained in:
Sam Ruby 2008-10-10 08:54:21 -04:00
parent c619402e6e
commit c8465307e3
2 changed files with 2 additions and 0 deletions

View File

@ -222,6 +222,7 @@ body > h1 {
#body { #body {
margin-top: 10px; margin-top: 10px;
margin-right: 210px;
} }
.admin { .admin {

View File

@ -282,6 +282,7 @@ function moveSidebar() {
var body = document.getElementById('body'); var body = document.getElementById('body');
sidebar.parentNode.removeChild(sidebar); sidebar.parentNode.removeChild(sidebar);
body.parentNode.insertBefore(sidebar, body); body.parentNode.insertBefore(sidebar, body);
body.style.marginRight = 0;
} }
// adjust dates to local time zones, optionally provide navigation keys // adjust dates to local time zones, optionally provide navigation keys