MediaWiki:Geshi.css: Difference between revisions

From OpenGL Wiki
Jump to navigation Jump to search
Restrict overflow and max-height to screen.
Attempt to remove border from source boxes. Again.
Line 1: Line 1:
/* CSS placed here will be applied to GeSHi syntax highlighting */
/* CSS placed here will be applied to GeSHi syntax highlighting */


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



Revision as of 20:25, 28 January 2012

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

.de1
{
  padding: 0;
}

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