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/basic.css = screen 31static/3rd/dokuwiki/structure.css = screen 32static/3rd/dokuwiki/design.css = screen 33static/3rd/dokuwiki/content.css = screen 34static/3rd/dokuwiki/_imgdetail.css = screen 35static/3rd/dokuwiki/_mediamanager.css = screen 36static/3rd/dokuwiki/_links.css = screen 37static/3rd/dokuwiki/_toc.css = screen 38static/3rd/dokuwiki/_footnotes.css = screen 39static/3rd/dokuwiki/_search.css = screen 40static/3rd/dokuwiki/_recent.css = screen 41static/3rd/dokuwiki/_diff.css = screen 42static/3rd/dokuwiki/_edit.css = screen 43static/3rd/dokuwiki/_modal.css = screen 44static/3rd/dokuwiki/_forms.css = screen 45static/3rd/dokuwiki/_admin.css = screen 46static/3rd/dokuwiki/includes.css = screen 47 48; load the most important MediaWiki vector styles 49static/3rd/vector/main-ltr.css = screen 50 51; load the specific "vector for dokuwiki" styles 52static/css/screen.css = screen 53user/screen.css = screen 54 55 56; print 57; note to myself: don't forget to respect the "print" action for the "printable 58; version" within "main.php" when adding new print styles. 59; I think this function is silly (cause therefore we got 60; different "media" but some people *always* searching for such 61; print version links). Good text about this: <http://j.mp/6r3Kgf> 62; note to myself: don't forget to respect the workaround within "bug49642.php" 63; when adding new print styles. 64; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 65static/3rd/dokuwiki/print.css = print 66 67; load the specific "vector for dokuwiki" styles 68static/css/print.css = print 69user/print.css = print 70 71 72; right-to-left 73; note to myself: don't forget to respect the workaround within "bug49642.php" 74; when adding new rtl styles. 75; load the DokuWiki starter styles. See <http://j.mp/jIyE2> why I am doing this. 76static/3rd/dokuwiki/rtl.css = rtl 77 78; load the most important MediaWiki vector styles 79static/3rd/vector/main-rtl.css = rtl 80 81; load the specific "vector for dokuwiki" styles 82static/css/rtl.css = rtl 83user/rtl.css = rtl 84 85 86 87 88 89 90; This section is used to configure some placeholder values used in 91; the stylesheets. Changing this file is the simplest method to 92; give your wiki a new look. 93[replacements] 94 95;-------------------------------------------------------------------------- 96;------ guaranteed dokuwiki color placeholders that every plugin can use 97; main text and background colors 98; 99;note to myself: don't forget to respect the workaround within "bug49642.php" 100; when changing values in here. 101__text__ = "#000" 102__background__ = "#fff" 103; alternative text and background colors 104__text_alt__ = "#000" 105__background_alt__ = "#dee7ec" ;"#eef3f8" 106; neutral text and background colors 107__text_neu__ = "#000" 108__background_neu__ = "#fff" 109; border color 110__border__ = "#8cacbb" 111;-------------------------------------------------------------------------- 112 113; these are used for links 114__existing__ = "#002bb8" 115__missing__ = "#ba0000" 116 117; highlighting search snippets 118__highlight__ = "#ff9" 119 120