﻿/* == Syntax Highlighting == */

/*
Note: I actually edited the plugin to turn on CSS styles. I don't know if there is 
a better way to do this, but it was just a matter of calling enable_classes after
the geshi object is created, like this:

$geshi = new GeSHi($code, $language);
$geshi->enable_classes();

*/

.wp_syntax 
{ 
  color: #100;
  background-color: #f9f9f9;
  border: 1px solid silver;
  margin: 0 10px 0 10px;
  overflow: auto;
}

/* IE FIX */

.wp_syntax 
{ 
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0);
}

.wp_syntax table 
{
  border-collapse: collapse;
}

.wp_syntax div, .wp_syntax td 
{ 
  vertical-align: top;
  padding: 2px 4px;
}

.wp_syntax .line_numbers 
{
  text-align: right;
  background-color: #def;
  color: gray;
  overflow: visible;
}

/* potential overrides for other styles */
.wp_syntax pre 
{
  float: none;
  clear: none;
  overflow: visible;
}

.kw0, .kw1, .kw2, .kw3, .kw4
{
	color:blue;
}

.co1, .co2, .coMULTI
{
	color:gray;
}

.st0, .st1, .st2
{
	color:green;
}

