MediaWiki:Vector.css: Difference between revisions

From OniGalore
Jump to navigation Jump to search
(I don't think we need this now, it seems to be creating a second border that wasn't there before)
(oh, maybe we still need this part)
Line 6: Line 6:
   position: fixed;
   position: fixed;
   height: 100%;
   height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #F6F6F6;
}
}



Revision as of 01:12, 3 August 2017

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

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

/* Darken the background for code tags just a tiny bit
** so code stands out more (default is 249, 249, 249)
*/
code
{
    background-color: rgb(245, 245, 245);
}

/* Raise size of text in diff views to 100% since
** Vector makes them 88% by default
*/
td.diff-addedline,
td.diff-deletedline,
td.diff-context
{
    font-size: 100%;
}