User:Omegatron/monobook.js/floatingSidebar.js: Difference between revisions

Content deleted Content added
mNo edit summary
Fixes after CSS specificy chage.
 
(2 intermediate revisions by one other user not shown)
Line 3:
 
// Restructure the page so that the sidebar can be floated
addOnloadHook$(function () {
content = document.getElementById("column-content"); // Find the main content column
 
Line 22:
 
});
 
 
// This CSS should be hidden from older versions of IE using javascript instead of the attribute selector?
 
// Include style sheet inline so that script is self-contained:
mw.util.addCSS(
document.write('<style type="text/css">' +
 
" /* 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-logo { /* Make logo inline with other divs */ '+
' 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 56 ⟶ 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; '+
' } '+
);
 
'<'+'/style>');