MediaWiki:Geshi.css: Difference between revisions

From OpenGL Wiki
Jump to navigation Jump to search
Bigger max height for preformatted text.
Restrict overflow and max-height to screen.
Line 6: Line 6:
}
}


pre
@media screen
{
{
   overflow: auto;
   pre
  max-height: 36em;
  {
    overflow: auto;
    max-height: 36em;
  }
}
}

Revision as of 20:23, 28 January 2012

/* CSS placed here will be applied to GeSHi syntax highlighting */

.source-cpp
{
  background-color: #333333 !important;
}

@media screen
{
  pre
  {
    overflow: auto;
    max-height: 36em;
  }
}