summaryrefslogtreecommitdiff
path: root/lib/exe/css.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-11-01 20:05:06 +0100
committerAndreas Gohr <andi@splitbrain.org>2005-11-01 20:05:06 +0100
commit13ddd5084bb1582b90045d7209fd566a62a72297 (patch)
tree04ffa9bbbf18081a549bc21eb4ce4c00324a8c57 /lib/exe/css.php
parentd87cece363399d9b656c140b94684ea8b60e2645 (diff)
downloadrpg-13ddd5084bb1582b90045d7209fd566a62a72297.tar.gz
rpg-13ddd5084bb1582b90045d7209fd566a62a72297.tar.bz2
added support for an additional style.css in a template
darcs-hash:20051101190506-7ad00-22d53e805ea5cf87172e00b380a788ed9871331e.gz
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r--lib/exe/css.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php
index 2bd63cbdc..a5b3eec66 100644
--- a/lib/exe/css.php
+++ b/lib/exe/css.php
@@ -45,9 +45,10 @@ function css_out(){
$files[DOKU_CONF.'userprint.css'] = '';
}else{
$files[DOKU_INC.'lib/styles/style.css'] = DOKU_BASE.'lib/styles/';
- //fixme spellchecker style
+ //fixme extra spellchecker style?
$files[DOKU_TPLINC.'layout.css'] = DOKU_TPL;
$files[DOKU_TPLINC.'design.css'] = DOKU_TPL;
+ $files[DOKU_TPLINC.'style.css'] = DOKU_TPL;
if($lang['direction'] == 'rtl'){
$files[DOKU_TPLINC.'rtl.css'] = DOKU_TPL;
}