1;; 2; INI to handle loading of the CSS files of the "vector" template for DokuWiki 3; 4; 5; LICENSE: This file is open source software (OSS) and may be copied under 6; certain conditions. See COPYING file for details or try to contact 7; the author(s) of this file in doubt. 8; 9; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 10; @author Andreas Haerter <andreas.haerter@dev.mail-node.com> 11; @link http://andreas-haerter.com/projects/dokuwiki-template-vector 12; @link http://www.dokuwiki.org/template:vector 13; @link http://www.dokuwiki.org/devel:css#styleini 14 15 16 17; Please see http://www.php.net/manual/en/function.parse-ini-file.php 18; for limitations of the ini format used here 19 20; Define the stylesheets your template uses here. The second value 21; defines for which output media the style should be loaded. Currently 22; print, screen and rtl are supported. rtl styles are loaded additionally 23; to screen styles if a right-to-left language is selected (eg. hebrew) 24[stylesheets] 25 26; screen 27; note to myself: don't forget to respect the workaround within "bug49642.php" 28; when adding new screen styles. 29; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 30static/3rd/dokuwiki/layout.css = screen 31static/3rd/dokuwiki/design.css = screen 32static/3rd/dokuwiki/media.css = screen 33static/3rd/dokuwiki/_admin.css = screen 34static/3rd/dokuwiki/_linkwiz.css = screen 35 36; load the most important MediaWiki vector styles 37static/3rd/vector/main-ltr.css = screen 38 39; load the specific "vector for dokuwiki" styles 40static/css/screen.css = screen 41user/screen.css = screen 42 43 44; print 45; note to myself: don't forget to respect the "print" action for the "printable 46; version" within "main.php" when adding new print styles. 47; I think this function is silly (cause therefore we got 48; different "media" but some people *always* searching for such 49; print version links). Good text about this: <http://j.mp/6r3Kgf> 50; note to myself: don't forget to respect the workaround within "bug49642.php" 51; when adding new print styles. 52; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 53static/3rd/dokuwiki/print.css = print 54 55; load the specific "vector for dokuwiki" styles 56static/css/print.css = print 57user/print.css = print 58 59 60; right-to-left 61; note to myself: don't forget to respect the workaround within "bug49642.php" 62; when adding new rtl styles. 63; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 64static/3rd/dokuwiki/rtl.css = rtl 65 66; load the most important MediaWiki vector styles 67static/3rd/vector/main-rtl.css = rtl 68 69; load the specific "vector for dokuwiki" styles 70static/css/rtl.css = rtl 71user/rtl.css = rtl 72 73 74 75 76 77 78; This section is used to configure some placeholder values used in 79; the stylesheets. Changing this file is the simplest method to 80; give your wiki a new look. 81[replacements] 82 83;-------------------------------------------------------------------------- 84;------ guaranteed dokuwiki color placeholders that every plugin can use 85; main text and background colors 86; 87;note to myself: don't forget to respect the workaround within "bug49642.php" 88; when changing values in here. 89__text__ = "#000" 90__background__ = "#fff" 91; alternative text and background colors 92__text_alt__ = "#000" 93__background_alt__ = "#dee7ec" ;"#eef3f8" 94; neutral text and background colors 95__text_neu__ = "#000" 96__background_neu__ = "#fff" 97; border color 98__border__ = "#8cacbb" 99;-------------------------------------------------------------------------- 100 101; other text and background colors 102; 103;note to myself: don't forget to respect the workaround within "bug49642.php" 104; when changing values in here. 105__text_other__ = "#ccc" 106__background_other__ = "#f9f9f9" 107 108; these are used for links 109__extern__ = "#436976" 110__existing__ = "#002bb8" ;use #090 for dokuwiki-green links 111__missing__ = "#ba0000" 112 113; highlighting search snippets 114__highlight__ = "#ff9" 115 116 117;-------------------------------------------------------------------------- 118;------ for keeping old templates and plugins compatible to the old pattern 119; (to be deleted at the next or after next DokuWiki release) 120; 121;note to myself: don't forget to respect the workaround within "bug49642.php" 122; when changing values in here. 123__white__ = "#fff" 124__lightgray__ = "#f5f5f5" 125__mediumgray__ = "#ccc" 126__darkgray__ = "#666" 127__black__ = "#000" 128 129; these are the shades of blue 130__lighter__ = "#f7f9fa" 131__light__ = "#eef3f8" 132__medium__ = "#dee7ec" 133__dark__ = "#8cacbb" 134__darker__ = "#638c9c" 135