Lines Matching refs:stylesheet

835      * string of valid stylesheet declarations
851 * class can then be used in a stylesheet to style this object's
863 * be used in a stylesheet to style this object's output
885 * containing valid stylesheet declarations. If $preserve_defaults is
1917 * stylesheet generators as they rely on some style information being
1968 * This function makes stylesheet generators much faster as they do not need these caches.
4333 * Returns a stylesheet for the highlighted code. If $economy mode
4334 * is true, we only return the stylesheet declarations that matter for
4338 * @return string A stylesheet built on the data for the current language
4344 // risk getting a stylesheet...
4368 // Header of the stylesheet
4370 $stylesheet = "/**\n".
4373 " * Dynamically generated stylesheet for {$this->language}\n".
4380 $stylesheet = "/**\n".
4391 //$stylesheet .= "$selector, {$selector}ol, {$selector}ol li {margin: 0;}\n";
4392 $stylesheet .= "$selector.de1, $selector.de2 {{$this->code_style}}\n";
4398 $stylesheet .= "$selector {{$this->overall_style}}\n";
4409 $stylesheet .= "{$selector}a:link {{$style}}\n";
4412 $stylesheet .= "{$selector}a:hover {{$style}}\n";
4415 $stylesheet .= "{$selector}a:active {{$style}}\n";
4418 $stylesheet .= "{$selector}a:visited {{$style}}\n";
4427 $stylesheet .= "$selector.head {{$this->header_content_style}}\n";
4430 $stylesheet .= "$selector.foot {{$this->footer_content_style}}\n";
4436 $stylesheet .= "$selector.imp {{$this->important_styles}}\n";
4441 $stylesheet .= "{$selector}li, {$selector}.li1 {{$this->line_style1}}\n";
4444 $stylesheet .= "{$selector}.ln {{$this->table_linenumber_style}}\n";
4448 $stylesheet .= "{$selector}.li2 {{$this->line_style2}}\n";
4456 $stylesheet .= "$selector.kw$group {{$styles}}\n";
4465 $stylesheet .= "$selector.co$group {{$styles}}\n";
4474 $stylesheet .= "$selector.es$group {{$styles}}\n";
4479 $stylesheet .= "$selector.br$group {{$styles}}\n";
4484 $stylesheet .= "$selector.sy$group {{$styles}}\n";
4493 $stylesheet .= "$selector.st$group {{$styles}}\n";
4498 $stylesheet .= "$selector.nu$group {{$styles}}\n";
4503 $stylesheet .= "$selector.me$group {{$styles}}\n";
4509 $stylesheet .= "$selector.sc$group {{$styles}}\n";
4518 $stylesheet .= "$selector.";
4519 $stylesheet .= $this->language_data['REGEXPS'][$group][GESHI_CLASS];
4520 $stylesheet .= " {{$styles}}\n";
4522 $stylesheet .= "$selector.re$group {{$styles}}\n";
4528 $stylesheet .= "{$selector}.ln-xtra, {$selector}li.ln-xtra, {$selector}div.ln-xtra {{$this->highlight_extra_lines_style}}\n";
4530 $stylesheet .= "{$selector}span.xtra { display:block; }\n";
4532 $stylesheet .= "{$selector}.lx$lineid, {$selector}li.lx$lineid, {$selector}div.lx$lineid {{$linestyle}}\n";
4535 return $stylesheet;