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