MediaWiki:Geshi.css: Difference between revisions

From OpenGL Wiki
Jump to navigation Jump to search
Attempt to remove border from source boxes.
Overflow control for pre-formatted elements.
Line 6: Line 6:
}
}


div.mw-geshi {
pre
   padding: 1em;
{
  margin: 1em 0;
   overflow: auto;
  border: 1px dashed #2f6fab;
  background-color: #f9f9f9;
}
}

Revision as of 20:13, 28 January 2012

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

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

pre
{
  overflow: auto;
}