<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-CA">
	<id>https://tinkernet.ca/wiki/index.php?action=history&amp;feed=atom&amp;title=User%3ATinker%2Fmonobook.js%2FfloatingSidebar.js</id>
	<title>User:Tinker/monobook.js/floatingSidebar.js - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tinkernet.ca/wiki/index.php?action=history&amp;feed=atom&amp;title=User%3ATinker%2Fmonobook.js%2FfloatingSidebar.js"/>
	<link rel="alternate" type="text/html" href="https://tinkernet.ca/wiki/index.php?title=User:Tinker/monobook.js/floatingSidebar.js&amp;action=history"/>
	<updated>2026-04-05T18:48:53Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://tinkernet.ca/wiki/index.php?title=User:Tinker/monobook.js/floatingSidebar.js&amp;diff=6534&amp;oldid=prev</id>
		<title>imported&gt;Tinker: Created page with &quot;// Floating sidebar // Originally at http://meta.wikimedia.org/wiki/Help:User_style/floating_quickbar  // Restructure the page so that the sidebar can be floated $(function ()...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tinkernet.ca/wiki/index.php?title=User:Tinker/monobook.js/floatingSidebar.js&amp;diff=6534&amp;oldid=prev"/>
		<updated>2016-07-21T20:39:45Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;// Floating sidebar // Originally at http://meta.wikimedia.org/wiki/Help:User_style/floating_quickbar  // Restructure the page so that the sidebar can be floated $(function ()...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;// Floating sidebar&lt;br /&gt;
// Originally at http://meta.wikimedia.org/wiki/Help:User_style/floating_quickbar&lt;br /&gt;
&lt;br /&gt;
// Restructure the page so that the sidebar can be floated&lt;br /&gt;
$(function () {&lt;br /&gt;
    content = document.getElementById(&amp;quot;column-content&amp;quot;);	// Find the main content column&lt;br /&gt;
&lt;br /&gt;
        // Move the footer into the main column so that it scrolls &lt;br /&gt;
    footer = document.getElementById(&amp;quot;footer&amp;quot;);         // Find the footer&lt;br /&gt;
    footer.parentNode.removeChild(footer);              // Remove the footer from the global wrapper&lt;br /&gt;
    content.appendChild(footer);                        // Place footer at the end of the content column;&lt;br /&gt;
&lt;br /&gt;
        // Move the tabs into the main column so that they scroll&lt;br /&gt;
    tabs = document.getElementById(&amp;quot;p-cactions&amp;quot;);       // Find the top tab list&lt;br /&gt;
    tabs.parentNode.removeChild(tabs);                  // Remove the tab list from the side column&lt;br /&gt;
    content.insertBefore(tabs,content.firstChild);      // Place tab list at the beginning of the content column&lt;br /&gt;
&lt;br /&gt;
        // Move the personal links into the main column so that they scroll&lt;br /&gt;
    personal = document.getElementById(&amp;quot;p-personal&amp;quot;);   // Find the personal links list&lt;br /&gt;
    personal.parentNode.removeChild(personal);          // Remove the personal links list from the side column&lt;br /&gt;
    content.insertBefore(personal,content.firstChild);  // Place personal links list at the beginning of the content column&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
// This CSS should be hidden from older versions of IE using javascript instead of the attribute selector?&lt;br /&gt;
&lt;br /&gt;
// Include style sheet inline so that script is self-contained:&lt;br /&gt;
mw.util.addCSS( &lt;br /&gt;
&amp;quot;   /* Fix the sidebar's position while you scroll */                           &amp;quot;+&lt;br /&gt;
'   div[id=column-one] {   /* Using the attribute selector hides this from IE */'+&lt;br /&gt;
'       position: fixed;                                                        '+&lt;br /&gt;
'       height: 100%;       /* If you shrink the browser too small, the     */  '+&lt;br /&gt;
'       overflow: auto;     /* side column will become scrollable, so stuff */  '+&lt;br /&gt;
'       z-index: 2;         /* is always accessible, albeit ugly            */  '+&lt;br /&gt;
'   }                                                                           '+&lt;br /&gt;
'                                                                               '+&lt;br /&gt;
'   div#p-logo {            /* Make logo inline with other divs             */  '+&lt;br /&gt;
'       position: static;                                                       '+&lt;br /&gt;
'   }                                                                           '+&lt;br /&gt;
'                                                                               '+&lt;br /&gt;
'   div#column-one {        /* Sidebar column start at the top screen edge  */  '+&lt;br /&gt;
'       padding-top: 0;                                                         '+&lt;br /&gt;
'   }                                                                           '+&lt;br /&gt;
'                                                                               '+&lt;br /&gt;
'   div#p-lang .pBody ul{   /* Sets the language box to a fixed height and  */  '+&lt;br /&gt;
'       height: 6em;        /* scrollable if too long to fit on screen      */  '+&lt;br /&gt;
'       overflow: auto;                                                         '+&lt;br /&gt;
'   }                                                                           '+&lt;br /&gt;
'                                                                               '+&lt;br /&gt;
'   /* Fix the background image, too, so it looks nice as you scroll */         '+&lt;br /&gt;
'   body {                                                                      '+&lt;br /&gt;
'       background-attachment: fixed;                                           '+&lt;br /&gt;
'   }                                                                           '+&lt;br /&gt;
'                                                                               '+&lt;br /&gt;
&amp;quot;   /* Fix the footer so it looks nice and doesn't overlap the sidebar */       &amp;quot;+&lt;br /&gt;
'   div#footer {                                                                '+&lt;br /&gt;
'       margin-left: 13.6em;                                                    '+&lt;br /&gt;
'       border-left: solid 1px rgb(250, 189, 35);                               '+&lt;br /&gt;
'       -moz-border-radius-topleft: 1em;                                        '+&lt;br /&gt;
'       -moz-border-radius-bottomleft: 1em;                                     '+&lt;br /&gt;
'   }                                                                           '&lt;br /&gt;
);&lt;/div&gt;</summary>
		<author><name>imported&gt;Tinker</name></author>
		
	</entry>
</feed>