Difference between revisions of "MediaWiki:Vector.css"

From BTGuard Wiki
Jump to: navigation, search
(Created page with "/* CSS placed here will affect users of the Vector skin */ Fix sidebar: div#mw-panel { position: fixed; overflow: auto; top: 0px; bottom: 0px; height: 100%; /*...")
 
Line 7: Line 7:
 
   bottom: 0px;
 
   bottom: 0px;
 
   height: 100%;
 
   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;
 

Revision as of 12:28, 19 April 2013

/* CSS placed here will affect users of the Vector skin */

/* Fix sidebar */
div#mw-panel { position: fixed;
  overflow: auto;
  top: 0px;
  bottom: 0px;
  height: 100%;