xref: /template/wikiweko/style.ini (revision 4b1bf07baf1067771438984c813eac7ee52e6517)
1fa5fcacaSAndreas Haerter;;
2fa5fcacaSAndreas Haerter; INI to handle loading of the CSS files of the "vector" template for DokuWiki
3fa5fcacaSAndreas Haerter;
4fa5fcacaSAndreas Haerter;
5fa5fcacaSAndreas Haerter; LICENSE: This file is open source software (OSS) and may be copied under
6fa5fcacaSAndreas Haerter;          certain conditions. See COPYING file for details or try to contact
7fa5fcacaSAndreas Haerter;          the author(s) of this file in doubt.
8fa5fcacaSAndreas Haerter;
9fa5fcacaSAndreas Haerter; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
10fa5fcacaSAndreas Haerter; @author Andreas Haerter <andreas.haerter@dev.mail-node.com>
11fa5fcacaSAndreas Haerter; @link http://andreas-haerter.com/projects/dokuwiki-template-vector
12fa5fcacaSAndreas Haerter; @link http://www.dokuwiki.org/template:vector
13fa5fcacaSAndreas Haerter; @link http://www.dokuwiki.org/devel:css#styleini
14fa5fcacaSAndreas Haerter
15fa5fcacaSAndreas Haerter
16fa5fcacaSAndreas Haerter
17fa5fcacaSAndreas Haerter; Please see http://www.php.net/manual/en/function.parse-ini-file.php
18fa5fcacaSAndreas Haerter; for limitations of the ini format used here
19fa5fcacaSAndreas Haerter
20fa5fcacaSAndreas Haerter; Define the stylesheets your template uses here. The second value
21fa5fcacaSAndreas Haerter; defines for which output media the style should be loaded. Currently
22fa5fcacaSAndreas Haerter; print, screen and rtl are supported. rtl styles are loaded additionally
23fa5fcacaSAndreas Haerter; to screen styles if a right-to-left language is selected (eg. hebrew)
24fa5fcacaSAndreas Haerter[stylesheets]
25fa5fcacaSAndreas Haerter
26fa5fcacaSAndreas Haerter; screen
27fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php"
28fa5fcacaSAndreas Haerter;                 when adding new screen styles.
29fa5fcacaSAndreas Haerter; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this.
30*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/basic.css         = screen
31*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/structure.css     = screen
32fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/design.css        = screen
33*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/content.css       = screen
34*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_imgdetail.css    = screen
35*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_mediamanager.css = screen
36*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_links.css        = screen
37*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_toc.css          = screen
38*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_footnotes.css    = screen
39*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_search.css       = screen
40*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_recent.css       = screen
41*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_diff.css         = screen
42*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_edit.css         = screen
43*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_modal.css        = screen
44*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/_forms.css        = screen
45fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/_admin.css        = screen
46*4b1bf07bSAndreas Haerterstatic/3rd/dokuwiki/includes.css      = screen
47fa5fcacaSAndreas Haerter
48fa5fcacaSAndreas Haerter; load the most important MediaWiki vector styles
49fa5fcacaSAndreas Haerterstatic/3rd/vector/main-ltr.css = screen
50fa5fcacaSAndreas Haerter
51fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles
52fa5fcacaSAndreas Haerterstatic/css/screen.css          = screen
53fa5fcacaSAndreas Haerteruser/screen.css                = screen
54fa5fcacaSAndreas Haerter
55fa5fcacaSAndreas Haerter
56fa5fcacaSAndreas Haerter; print
57fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the "print" action for the "printable
58fa5fcacaSAndreas Haerter;                 version" within "main.php" when adding new print styles.
59fa5fcacaSAndreas Haerter;                 I think this function is silly (cause therefore we got
60fa5fcacaSAndreas Haerter;                 different "media" but some people *always* searching for such
61fa5fcacaSAndreas Haerter;                 print version links). Good text about this: <http://j.mp/6r3Kgf>
62fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php"
63fa5fcacaSAndreas Haerter;                 when adding new print styles.
64fa5fcacaSAndreas Haerter; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this.
65fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/print.css = print
66fa5fcacaSAndreas Haerter
67fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles
68fa5fcacaSAndreas Haerterstatic/css/print.css = print
69fa5fcacaSAndreas Haerteruser/print.css       = print
70fa5fcacaSAndreas Haerter
71fa5fcacaSAndreas Haerter
72fa5fcacaSAndreas Haerter; right-to-left
73fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php"
74fa5fcacaSAndreas Haerter;                 when adding new rtl styles.
75*4b1bf07bSAndreas Haerter; load the DokuWiki starter styles. See <http://j.mp/jIyE2> why I am doing this.
76fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/rtl.css = rtl
77fa5fcacaSAndreas Haerter
78fa5fcacaSAndreas Haerter; load the most important MediaWiki vector styles
79fa5fcacaSAndreas Haerterstatic/3rd/vector/main-rtl.css = rtl
80fa5fcacaSAndreas Haerter
81fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles
82fa5fcacaSAndreas Haerterstatic/css/rtl.css = rtl
83fa5fcacaSAndreas Haerteruser/rtl.css       = rtl
84fa5fcacaSAndreas Haerter
85fa5fcacaSAndreas Haerter
86fa5fcacaSAndreas Haerter
87fa5fcacaSAndreas Haerter
88fa5fcacaSAndreas Haerter
89fa5fcacaSAndreas Haerter
90fa5fcacaSAndreas Haerter; This section is used to configure some placeholder values used in
91fa5fcacaSAndreas Haerter; the stylesheets. Changing this file is the simplest method to
92fa5fcacaSAndreas Haerter; give your wiki a new look.
93fa5fcacaSAndreas Haerter[replacements]
94fa5fcacaSAndreas Haerter
95fa5fcacaSAndreas Haerter;--------------------------------------------------------------------------
96fa5fcacaSAndreas Haerter;------ guaranteed dokuwiki color placeholders that every plugin can use
97fa5fcacaSAndreas Haerter; main text and background colors
98fa5fcacaSAndreas Haerter;
99fa5fcacaSAndreas Haerter;note to myself: don't forget to respect the workaround within "bug49642.php"
100fa5fcacaSAndreas Haerter;                when changing values in here.
101fa5fcacaSAndreas Haerter__text__           = "#000"
102fa5fcacaSAndreas Haerter__background__     = "#fff"
103fa5fcacaSAndreas Haerter; alternative text and background colors
104fa5fcacaSAndreas Haerter__text_alt__       = "#000"
105fa5fcacaSAndreas Haerter__background_alt__ = "#dee7ec" ;"#eef3f8"
106fa5fcacaSAndreas Haerter; neutral text and background colors
107fa5fcacaSAndreas Haerter__text_neu__       = "#000"
108fa5fcacaSAndreas Haerter__background_neu__ = "#fff"
109fa5fcacaSAndreas Haerter; border color
110fa5fcacaSAndreas Haerter__border__         = "#8cacbb"
111fa5fcacaSAndreas Haerter;--------------------------------------------------------------------------
112fa5fcacaSAndreas Haerter
113fa5fcacaSAndreas Haerter; these are used for links
114*4b1bf07bSAndreas Haerter__existing__  = "#002bb8"
115fa5fcacaSAndreas Haerter__missing__   = "#ba0000"
116fa5fcacaSAndreas Haerter
117fa5fcacaSAndreas Haerter; highlighting search snippets
118fa5fcacaSAndreas Haerter__highlight__ = "#ff9"
119fa5fcacaSAndreas Haerter
120