Home | History | Annotate | Download | only in geshi

Lines Matching defs:stylesheet

761      * string of valid stylesheet declarations
777 * class can then be used in a stylesheet to style this object's
789 * be used in a stylesheet to style this object's output
811 * containing valid stylesheet declarations. If $preserve_defaults is
1782 * stylesheet generators as they rely on some style information being
1834 * This function makes stylesheet generators much faster as they do not need these caches.
4194 * Returns a stylesheet for the highlighted code. If $economy mode
4195 * is true, we only return the stylesheet declarations that matter for
4199 * @return string A stylesheet built on the data for the current language
4205 // risk getting a stylesheet...
4229 // Header of the stylesheet
4231 $stylesheet = "/**\n".
4232 " * GeSHi Dynamically Generated Stylesheet\n".
4234 stylesheet for {$this->language}\n".
4241 $stylesheet = "/**\n".
4252 //$stylesheet .= "$selector, {$selector}ol, {$selector}ol li {margin: 0;}\n";
4253 $stylesheet .= "$selector.de1, $selector.de2 {{$this->code_style}}\n";
4259 $stylesheet .= "$selector {{$this->overall_style}}\n";
4270 $stylesheet .= "{$selector}a:link {{$style}}\n";
4273 $stylesheet .= "{$selector}a:hover {{$style}}\n";
4276 $stylesheet .= "{$selector}a:active {{$style}}\n";
4279 $stylesheet .= "{$selector}a:visited {{$style}}\n";
4288 $stylesheet .= "$selector.head {{$this->header_content_style}}\n";
4291 $stylesheet .= "$selector.foot {{$this->footer_content_style}}\n";
4297 $stylesheet .= "$selector.imp {{$this->important_styles}}\n";
4302 $stylesheet .= "{$selector}li, {$selector}.li1 {{$this->line_style1}}\n";
4305 $stylesheet .= "{$selector}.ln {{$this->table_linenumber_style}}\n";
4309 $stylesheet .= "{$selector}.li2 {{$this->line_style2}}\n";
4317 $stylesheet .= "$selector.kw$group {{$styles}}\n";
4326 $stylesheet .= "$selector.co$group {{$styles}}\n";
4335 $stylesheet .= "$selector.es$group {{$styles}}\n";
4340 $stylesheet .= "$selector.br$group {{$styles}}\n";
4345 $stylesheet .= "$selector.sy$group {{$styles}}\n";
4354 $stylesheet .= "$selector.st$group {{$styles}}\n";
4359 $stylesheet .= "$selector.nu$group {{$styles}}\n";
4364 $stylesheet .= "$selector.me$group {{$styles}}\n";
4370 $stylesheet .= "$selector.sc$group {{$styles}}\n";
4379 $stylesheet .= "$selector.";
4380 $stylesheet .= $this->language_data['REGEXPS'][$group][GESHI_CLASS];
4381 $stylesheet .= " {{$styles}}\n";
4383 $stylesheet .= "$selector.re$group {{$styles}}\n";
4389 $stylesheet .= "{$selector}.ln-xtra, {$selector}li.ln-xtra, {$selector}div.ln-xtra {{$this->highlight_extra_lines_style}}\n";
4391 $stylesheet .= "{$selector}span.xtra { display:block; }\n";
4393 $stylesheet .= "{$selector}.lx$lineid, {$selector}li.lx$lineid, {$selector}div.lx$lineid {{$linestyle}}\n";
4396 return $stylesheet;