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
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(
" /* 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 {
' position: static;
' } '+
' '+
' div#column-one {
' padding-top: 0; '+
' } '+
' '+
' div#p-lang .pBody ul{
' 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; '+
' } '
);
|