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; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this. 31static/3rd/dokuwiki/_imgdetail.css = screen 32static/3rd/dokuwiki/_media_popup.css = screen 33static/3rd/dokuwiki/_media_fullscreen.css = screen 34static/3rd/dokuwiki/_fileuploader.css = screen 35static/3rd/dokuwiki/_tabs.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 46 47; load the most important MediaWiki vector styles 48static/3rd/vector/main-ltr.css = screen 49 50; load the specific "vector for dokuwiki" styles 51static/css/screen.css = screen 52user/screen.css = screen 53 54 55; print 56; note to myself: don't forget to respect the "print" action for the "printable 57; version" within "main.php" when adding new print styles. 58; I think this function is silly (cause therefore we got 59; different "media" but some people *always* searching for such 60; print version links). Good text about this: <http://j.mp/6r3Kgf> 61; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this. 62static/3rd/dokuwiki/print.css = print 63 64; load the specific "vector for dokuwiki" styles 65static/css/print.css = print 66user/print.css = print 67 68 69; right-to-left 70; load the most important MediaWiki vector styles 71static/3rd/vector/main-rtl.css = rtl 72 73; load the specific "vector for dokuwiki" styles 74static/css/rtl.css = rtl 75user/rtl.css = rtl 76 77 78 79 80; This section is used to configure some placeholder values used in 81; the stylesheets. Changing this file is the simplest method to 82; give your wiki a new look. 83[replacements] 84 85;-------------------------------------------------------------------------- 86;------ guaranteed dokuwiki color placeholders that every plugin can use 87; main text and background colors 88; 89__text__ = "#000" 90__background__ = "#fff" 91; alternative text and background colors 92__text_alt__ = "#000" 93__background_alt__ = "#dee7ec" 94; neutral text and background colors 95__text_neu__ = "#000" 96__background_neu__ = "#fff" 97; border color 98__border__ = "#8cacbb" 99;-------------------------------------------------------------------------- 100 101; these are used for links 102__existing__ = "#002bb8" 103__missing__ = "#ba0000" 104 105; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes 106; from core and will therefore be removed from here if pre-Adora Belle support 107; will be dropped) 108__highlight__ = "#ff9" 109