User:Iritscen/vector.css: Difference between revisions

From OniGalore
Jump to navigation Jump to search
(trying to figure out where the logo went)
(what does this do?)
Line 3: Line 3:
{
{
   position: fixed;
   position: fixed;
  overflow: auto;
   height: 100%;
   height: 100%;
   /* Prevent content overlay when sidewards scrolling */
   /* Prevent content overlay when sidewards scrolling */

Revision as of 15:06, 5 May 2012

/* Fix the sidebar in place when scrolling */
div#mw-panel
{
  position: fixed;
  height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #F6F6F6;
  border-right: 1px solid #A7D7F9;
}

/* Prevent sidewards scrolling in pre elements */
pre
{
  overflow: auto;
  max-height: 25em;
}