Blame Extras/Trac/htdocs/css/code.css

4c79b5
/* Code */
4c79b5
4c79b5
div.code {
4c79b5
	margin: 1em 1.75em;
4c79b5
	padding: .25em;
4c79b5
	overflow: auto;
4c79b5
	}
4c79b5
4c79b5
div.code pre { 
4c79b5
	background:#FFFAE9 none repeat scroll 0%;
4c79b5
	border-color:#E5E5E5;
4c79b5
	border-style:solid;
4c79b5
	border-width:1px 1px 1px 4px;
4c79b5
	font-family:"DejaVu Sans Mono","Liberation Mono",monospace;
4c79b5
	margin:0.5em 0pt;
4c79b5
	overflow:auto;
4c79b5
	padding:0.5em 1em;
4c79b5
	white-space:pre;
4c79b5
	}
4c79b5
4c79b5
table.code {
4c79b5
	border: 1px solid #ddd;
4c79b5
	border-spacing: 0;
4c79b5
	border-top: 0;
4c79b5
	empty-cells: show;
4c79b5
	font-size: 12px;
4c79b5
	line-height: 130%;
4c79b5
	padding: 0;
4c79b5
	margin: 0 auto;
4c79b5
	table-layout: fixed;
4c79b5
	width: 100%;
4c79b5
	}
4c79b5
4c79b5
table.code th {
4c79b5
	border-right: 1px solid #d7d7d7;
4c79b5
	border-bottom: 1px solid #998;
4c79b5
	font-size: 11px;
4c79b5
	}
4c79b5
4c79b5
table.code th.lineno {
4c79b5
	width: 4em; 
4c79b5
	}
4c79b5
4c79b5
table.code thead th {
4c79b5
	background: #eee;
4c79b5
	border-top: 1px solid #d7d7d7;
4c79b5
	color: #999;
4c79b5
	padding: 0 .25em;
4c79b5
	text-align: center;
4c79b5
	white-space: nowrap;
4c79b5
	}
4c79b5
4c79b5
table.code tbody th {
4c79b5
	background: #eed;
4c79b5
	color: #886;
4c79b5
	font-weight: normal;
4c79b5
	padding: 0 .5em;
4c79b5
	text-align: right;
4c79b5
	vertical-align: top;
4c79b5
	}
4c79b5
4c79b5
table.code tbody th :link, 
4c79b5
table.code tbody th :visited {
4c79b5
	border: none;
4c79b5
	color: #886;
4c79b5
	text-decoration: none;
4c79b5
	}
4c79b5
4c79b5
table.code tbody th :link:hover, 
4c79b5
table.code tbody th :visited:hover {
4c79b5
	color: #000;
4c79b5
}
4c79b5
4c79b5
table.code tbody td {
4c79b5
	background: #fff;
4c79b5
	font: normal 11px monospace;
4c79b5
	overflow: hidden;
4c79b5
	padding: 1px 2px;
4c79b5
	vertical-align: top;
4c79b5
	}
4c79b5
4c79b5
.image-file {
4c79b5
	background: #eee;
4c79b5
	padding: .3em;
4c79b5
	}
4c79b5
4c79b5
.image-file img {
4c79b5
	background: url("../imggrid.png");
4c79b5
	}
4c79b5
4c79b5
/* Default */
4c79b5
4c79b5
.code-block span {
4c79b5
	font-family: monospace;
4c79b5
	}
4c79b5
4c79b5
/* Comments */
4c79b5
4c79b5
.code-comment, 
4c79b5
.css_comment, 
4c79b5
.c_comment, 
4c79b5
.c_commentdoc, 
4c79b5
.c_commentline,
4c79b5
.c_commentlinedoc, 
4c79b5
.h_comment,
4c79b5
.pl_commentline, 
4c79b5
.p_commentblock,
4c79b5
.p_commentline, 
4c79b5
.hphp_comment, 
4c79b5
.hphp_commentblock, 
4c79b5
.hphp_commentline,
4c79b5
.yaml_comment {
4c79b5
	color: #998; 
4c79b5
	font-style: italic;
4c79b5
	}
4c79b5
4c79b5
/* Language keyword */
4c79b5
4c79b5
.code-keyword, 
4c79b5
.pl_word {
4c79b5
	color: #789;
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
/* Type */
4c79b5
4c79b5
.code-type, 
4c79b5
.c_word, 
4c79b5
.c_word2, 
4c79b5
.p_classname, 
4c79b5
.hphp_classname {
4c79b5
	color: #468;
4c79b5
	font-weight: bold;
4c79b5
	}
4c79b5
4c79b5
/* Function */
4c79b5
4c79b5
.code-func, 
4c79b5
.p_defname {
4c79b5
	color: #900;
4c79b5
	font-weight: bold;
4c79b5
	border-bottom: none;
4c79b5
	}
4c79b5
4c79b5
/* Pre-processor */
4c79b5
4c79b5
.code-prep, 
4c79b5
.c_preprocessor, 
4c79b5
.pl_preprocessor, 
4c79b5
.yaml_identifier {
4c79b5
	color: #999;
4c79b5
	font-weight: bold;
4c79b5
	}
4c79b5
4c79b5
/* Language construct */
4c79b5
4c79b5
.code-lang, 
4c79b5
.p_word { 
4c79b5
	color: #000; 
4c79b5
	font-weight: bold 
4c79b5
	}
4c79b5
4c79b5
/* String */
4c79b5
4c79b5
.code-string, 
4c79b5
.c_string, 
4c79b5
.c_stringeol, 
4c79b5
.css_doublestring, 
4c79b5
.css_singlestring,
4c79b5
.h_singlestring, 
4c79b5
.h_doublestring, 
4c79b5
.pl_string, 
4c79b5
.pl_string_q, 
4c79b5
.pl_string_qq,
4c79b5
.pl_string_qr, 
4c79b5
.pl_string_qw, 
4c79b5
.pl_string_qx, 
4c79b5
.pl_backticks, 
4c79b5
.pl_character,
4c79b5
.p_string, 
4c79b5
.p_stringeol, 
4c79b5
.hphp_string, 
4c79b5
.hphp_stringeol, 
4c79b5
.hphp_triple,
4c79b5
.hphp_tripledouble, 
4c79b5
.p_character, 
4c79b5
.p_triple, 
4c79b5
.p_tripledouble {
4c79b5
	color: #b84;
4c79b5
	font-weight: normal;
4c79b5
}
4c79b5
4c79b5
/* Variable name */
4c79b5
4c79b5
.code-var { 
4c79b5
	color: #f9f; 
4c79b5
	}
4c79b5
4c79b5
/* SilverCity-specific styles */
4c79b5
4c79b5
.css_id, 
4c79b5
.css_class, 
4c79b5
.css_pseudoclass, 
4c79b5
.css_tag { 
4c79b5
	color: #900000; 
4c79b5
	}
4c79b5
4c79b5
.css_directive {
4c79b5
	color: #009000;
4c79b5
	font-weight: bold 
4c79b5
	}
4c79b5
4c79b5
.css_important {
4c79b5
	color: blue 
4c79b5
	}
4c79b5
4c79b5
.css_operator { 
4c79b5
	color: #000090; 
4c79b5
	font-weight: bold;
4c79b5
	}
4c79b5
4c79b5
.css_tag {
4c79b5
	font-weight: bold;
4c79b5
	}
4c79b5
4c79b5
.css_unknown_identifier, 
4c79b5
.css_unknown_pseudoclass { 
4c79b5
	color: red; 
4c79b5
	}
4c79b5
4c79b5
.css_value { 
4c79b5
	color: navy;
4c79b5
	}
4c79b5
4c79b5
.c_commentdockeyword { 
4c79b5
	color: navy; 
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.c_commentdockeyworderror { 
4c79b5
	color: red; 
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.c_character, 
4c79b5
.c_regex, 
4c79b5
.c_uuid, 
4c79b5
.c_verbatim {
4c79b5
	color: olive; 
4c79b5
	}
4c79b5
4c79b5
.c_number {
4c79b5
	color: #099; 
4c79b5
	}
4c79b5
4c79b5
.h_asp { 
4c79b5
	color: #ff0 
4c79b5
	}
4c79b5
4c79b5
.h_aspat { 
4c79b5
	color: #ffdf00 
4c79b5
	}
4c79b5
4c79b5
.h_attribute {
4c79b5
	color: teal 
4c79b5
	}
4c79b5
4c79b5
.h_attributeunknown { 
4c79b5
	color: red 
4c79b5
	}
4c79b5
4c79b5
.h_cdata {
4c79b5
	color: #373 
4c79b5
	}
4c79b5
4c79b5
.h_entity {
4c79b5
	color: purple 
4c79b5
	}
4c79b5
4c79b5
.h_number {
4c79b5
	color: #099 
4c79b5
	}
4c79b5
4c79b5
.h_other { 
4c79b5
	color: purple 
4c79b5
	}
4c79b5
4c79b5
.h_script, 
4c79b5
.h_tag, 
4c79b5
.h_tagend { 
4c79b5
	color: navy 
4c79b5
	}
4c79b5
4c79b5
.h_tagunknown {
4c79b5
	color: red 
4c79b5
	}
4c79b5
4c79b5
.h_xmlend, 
4c79b5
.h_xmlstart { 
4c79b5
	color: blue 
4c79b5
	}
4c79b5
4c79b5
.pl_datasection {
4c79b5
	color: olive 
4c79b5
	}
4c79b5
4c79b5
.pl_error {
4c79b5
	color: red; 
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.pl_hash { 
4c79b5
	color: #000; 
4c79b5
	}
4c79b5
4c79b5
.pl_here_delim,
4c79b5
.pl_here_q, 
4c79b5
.pl_here_qq, 
4c79b5
.pl_here_qx, 
4c79b5
.pl_longquote { 
4c79b5
	color: olive 
4c79b5
	}
4c79b5
4c79b5
.pl_number {
4c79b5
	color: #099; 
4c79b5
	}
4c79b5
4c79b5
.pl_pod { 
4c79b5
	font-style: italic 
4c79b5
	}
4c79b5
4c79b5
.pl_regex, 
4c79b5
.pl_regsubst {
4c79b5
	color: olive; 
4c79b5
	}
4c79b5
4c79b5
.p_number { 
4c79b5
	color: #099; 
4c79b5
	}
4c79b5
4c79b5
.hphp_character { 
4c79b5
	color: olive 
4c79b5
	}
4c79b5
4c79b5
.hphp_defname { 
4c79b5
	color: #099; 
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.hphp_number { 
4c79b5
	color: #099; 
4c79b5
	}
4c79b5
4c79b5
.hphp_word { 
4c79b5
	color: navy;
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.yaml_document { 
4c79b5
	color: gray; 
4c79b5
	font-style: italic; 
4c79b5
	}
4c79b5
4c79b5
.yaml_keyword { 
4c79b5
	color: #808; 
4c79b5
	}
4c79b5
4c79b5
.yaml_number { 
4c79b5
	color: #800; 
4c79b5
	}
4c79b5
4c79b5
.yaml_reference { 
4c79b5
	color: #088; 
4c79b5
	}
4c79b5
4c79b5
.v_comment { 
4c79b5
	color: gray; 
4c79b5
	font-style: italic; 
4c79b5
	}
4c79b5
4c79b5
.v_commentline, 
4c79b5
.v_commentlinebang { 
4c79b5
	color: red; 
4c79b5
	font-style: italic; 
4c79b5
	}
4c79b5
4c79b5
.v_number, 
4c79b5
.v_preprocessor { 
4c79b5
	color: #099; 
4c79b5
	}
4c79b5
4c79b5
.v_string, 
4c79b5
.v_stringeol { 
4c79b5
	color: olive; 
4c79b5
	}
4c79b5
4c79b5
.v_user { 
4c79b5
	color: blue; 
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.v_word, 
4c79b5
.v_word3 { 
4c79b5
	color: navy;
4c79b5
	font-weight: bold; 
4c79b5
	}
4c79b5
4c79b5
.v_word2 { 
4c79b5
	color: green; 
4c79b5
	font-weight: bold; 
4c79b5
	}