Content deleted Content added
No edit summary |
Fixes after CSS specificy chage. |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 3:
// Restructure the page so that the sidebar can be floated
content = document.getElementById("column-content"); // Find the main content column
footer = document.getElementById("footer"); // Find the footer
footer.parentNode.removeChild(footer); // Remove the footer from the global wrapper
content.appendChild(footer); // Place footer at the end of the content column;
tabs = document.getElementById("p-cactions"); // Find the top tab list
tabs.parentNode.removeChild(tabs); // Remove the tab list from the side column
content.insertBefore(tabs,content.firstChild); // Place tab list at the beginning of the content column
personal.parentNode.removeChild(personal); // Remove the personal links list from the side column
content.insertBefore(personal,content.firstChild); // Place personal links list at the beginning of the content column
Line 23:
});
// This CSS should be hidden from older versions of IE using javascript instead of the attribute selector?▼
▲// This CSS should be hidden from IE using javascript instead of the attribute selector?
// Include style sheet inline so that script is self-contained:
mw.util.addCSS(
" /* Fix the sidebar's position while you scroll */ "+
' div[id=column-one] { /* Using the attribute selector hides this from IE */'+
Line 37 ⟶ 35:
' } '+
' '+
' div#p-
' position: static; '+
' } '+
' '+
' div#column-one { /* Sidebar column start at the top screen edge */ '+
' padding-top: 0; '+
' } '+
' '+
' div#p-lang .pBody ul{ /* Sets the language box to a fixed height and */ '+
' height: 6em; /* scrollable if too long to fit on screen */ '+
' overflow: auto; '+
Line 48 ⟶ 54:
' '+
" /* Fix the footer so it looks nice and doesn't overlap the sidebar */ "+
' div#footer {
' margin-left: 13.6em; '+
' border-left: solid 1px rgb(250, 189, 35); '+
' -moz-border-radius-topleft: 1em; '+
' -moz-border-radius-bottomleft: 1em; '+
' } '
);
|