MediaWiki:Vector.css: Difference between revisions

attempting to fix sidebar mod on phones
(oh, maybe we still need this part)
(attempting to fix sidebar mod on phones)
Line 1: Line 1:
/* CSS placed here will affect users of the Vector skin */
/* CSS placed here will affect users of the Vector skin */


/* Fix the sidebar in place when scrolling */
/* Fix the sidebar in place when scrolling, as long as we are not on a small screen (e.g. a phone) */
div#mw-panel
@media (min-width:632px)
{
{
   position: fixed;
   div#mw-panel
  height: 100%;
  {
  /* Prevent content overlay when sidewards scrolling */
    position: fixed;
  background-color: #F6F6F6;
    height: 100%;
    /* Prevent content overlay when sidewards scrolling */
    background-color: #F6F6F6;
  }
}
}