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