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 ARSAVA <dokuwiki@dev.arsava.com> 11; @link https://www.dokuwiki.org/template:vector 12; @link https://www.dokuwiki.org/devel:style.ini 13 14 15 16; Please see http://www.php.net/manual/en/function.parse-ini-file.php 17; for limitations of the ini format used here. 18 19; To extend this file or make changes to it, it is recommended to create 20; a style.local.ini file to prevent losing any changes after an upgrade. 21; Please don't forget to copy the section your changes should be under 22; (i.e. [stylesheets] or [replacements]) into that file as well. 23 24; Define the stylesheets your template uses here. The second value 25; defines for which output media the style should be loaded. Currently 26; print, screen and all are supported. 27 28[stylesheets] 29; screen 30; note to myself: don't forget to respect the workaround within "bug49642.php" 31; when adding new screen styles. 32; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this. 33static/3rd/dokuwiki/_imgdetail.css = screen 34static/3rd/dokuwiki/_media_popup.css = screen 35static/3rd/dokuwiki/_media_fullscreen.css = screen 36static/3rd/dokuwiki/_fileuploader.css = screen 37static/3rd/dokuwiki/_tabs.css = screen 38static/3rd/dokuwiki/_links.css = screen 39static/3rd/dokuwiki/_toc.css = screen 40static/3rd/dokuwiki/_footnotes.css = screen 41static/3rd/dokuwiki/_search.css = screen 42static/3rd/dokuwiki/_recent.css = screen 43static/3rd/dokuwiki/_diff.css = screen 44static/3rd/dokuwiki/_edit.css = screen 45static/3rd/dokuwiki/_modal.css = screen 46static/3rd/dokuwiki/_forms.css = screen 47static/3rd/dokuwiki/_admin.css = screen 48 49; load the most important MediaWiki vector styles 50static/3rd/vector/main-ltr.css = screen 51 52; load the specific "vector for dokuwiki" styles 53static/css/screen.css = screen 54user/screen.css = screen 55 56 57; print 58; note to myself: don't forget to respect the "print" action for the "printable 59; version" within "main.php" when adding new print styles. 60; I think this function is silly (cause therefore we got 61; different "media" but some people *always* searching for such 62; print version links). Good text about this: <http://j.mp/6r3Kgf> 63; note to myself: don't forget to respect the workaround within "bug49642.php" 64; when adding new print styles. 65; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this. 66static/3rd/dokuwiki/print.css = print 67 68; load the specific "vector for dokuwiki" styles 69static/css/print.css = print 70user/print.css = print 71 72 73; right-to-left 74; note to myself: don't forget to respect the workaround within "bug49642.php" 75; when adding new rtl styles. 76 77; load the most important MediaWiki vector styles 78static/3rd/vector/main-rtl.css = rtl 79 80; load the specific "vector for dokuwiki" styles 81static/css/rtl.css = rtl 82user/rtl.css = rtl 83 84 85 86 87; This section is used to configure some placeholder values used in 88; the stylesheets. Changing this file is the simplest method to 89; give your wiki a new look. 90[replacements] 91 92;-------------------------------------------------------------------------- 93;------ guaranteed dokuwiki color placeholders that every plugin can use 94; main text and background colors 95; 96;note to myself: don't forget to respect the workaround within "bug49642.php" 97; when changing values in here. 98__text__ = "#000" 99__background__ = "#fff" 100; alternative text and background colors 101__text_alt__ = "#000" 102__background_alt__ = "#dee7ec" 103; neutral text and background colors 104__text_neu__ = "#000" 105__background_neu__ = "#fff" 106; border color 107__border__ = "#8cacbb" 108;-------------------------------------------------------------------------- 109 110; these are used for links 111__existing__ = "#002bb8" 112__missing__ = "#ba0000" 113 114; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes 115; from core and will therefore be removed from here if pre-Adora Belle support 116; will be dropped) 117__highlight__ = "#ff9" 118