xref: /template/sprintdoc/style.ini (revision f414dd95777ac284e381cb1f6fc54f0d5f35be23)
1; Please see http://www.php.net/manual/en/function.parse-ini-file.php
2; for limitations of the ini format used here
3
4; To extend this file or make changes to it, it is recommended to create
5; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
6; any changes after an upgrade.
7; Please don't forget to copy the section your changes should be under
8; (i.e. [stylesheets] or [replacements]) into that file as well.
9
10
11; Define the stylesheets your template uses here. The second value
12; defines for which output media the style should be loaded. Currently
13; print, screen and all are supported.
14; You can reference CSS and LESS files here. Files referenced here will
15; be checked for updates when considering a cache rebuild while files
16; included through LESS' @import statements are not
17
18
19
20[stylesheets]
21
22
23; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
24; DokuWiki Default Template Styles
25; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
26
27../dokuwiki/css/_imgdetail.css        = screen
28../dokuwiki/css/_media_popup.css      = screen
29../dokuwiki/css/_media_fullscreen.css = screen
30../dokuwiki/css/_fileuploader.css     = screen
31../dokuwiki/css/_tabs.css             = screen
32../dokuwiki/css/_links.css            = screen
33../dokuwiki/css/_toc.css              = screen
34../dokuwiki/css/_footnotes.css        = screen
35../dokuwiki/css/_search.css           = screen
36../dokuwiki/css/_recent.css           = screen
37../dokuwiki/css/_diff.css             = screen
38../dokuwiki/css/_edit.css             = screen
39../dokuwiki/css/_modal.css            = screen
40../dokuwiki/css/_forms.css            = screen
41../dokuwiki/css/_admin.css            = screen
42../dokuwiki/css/pagetools.less        = screen
43../dokuwiki/css/content.less          = screen
44
45
46; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
47; sprintDoc Template Styles
48; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
49
50; responsive behaviour for structure and areas is handled in style modules
51
52; _____________  basic styles  _____________
53
54css/base.less                         = all
55css/base_mixins.less                  = all
56css/base_fontello-codes.less          = all
57css/base_fonts.less                   = all
58css/base_structure.less               = all
59css/base_design.less                  = all
60
61
62; _____________  area styles   _____________
63
64css/area_content.less                 = all
65css/area_header.less                  = all
66css/area_footer.less                  = all
67css/area_nav-direct.less              = all
68css/area_nav-breadcrumb.less          = all
69css/area_nav-usertools.less           = all
70css/area_sidebar-search.less          = all
71css/area_nav-pagetools.less           = all
72
73
74; _____________  plugin styles _____________
75
76css/plugins/magic-matcher.less        = all
77css/plugins/do_tasks.less             = all
78
79; _____________  print styles  _____________
80
81css/print.css                         = print
82
83
84
85; This section is used to configure some placeholder values used in
86; the stylesheets. Changing this file is the simplest method to
87; give your wiki a new look.
88; Placeholders defined here will also be made available as LESS variables
89; (with surrounding underscores removed, and the prefix @ini_ added)
90
91[replacements]
92
93
94; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
95; guaranteed dokuwiki color placeholders that every plugin can use
96; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
97
98; main text and background colors
99__text__                = "#252525"              ; @ini_text
100__background__          = "#ECECEC"              ; @ini_background
101
102; alternative text and background colors
103__text_alt__            = "#454545"              ; @ini_text_alt
104__background_alt__      = "#e8e8e8"              ; @ini_background_alt
105
106; neutral text and background colors
107__text_neu__            = "#656565"              ; @ini_text_neu
108__background_neu__      = "#ffffff"              ; @ini_background_neu
109
110; border color
111__border__              = "#cccccc"              ; @ini_border
112
113; highlighted text (e.g. search snippets)
114__highlight__           = "#efefef"              ; @ini_highlight
115
116
117
118; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
119; template specific placeholders
120; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
121
122; these are used for links
123__existing__                = "#286da8"                                                 ; @ini_existing
124__missing__                 = "#CD5360"                                                 ; @ini_missing
125
126; widths
127__site_width__              = "64em"                                                    ; @ini_site_width
128__sidebar_width__           = "16em"                                                    ; @ini_sidebar_width
129
130__font_family_screen__      = "roboto, 'helvetica', arial, sans-serif"
131__font_family_menu__        = "'roboto condensed', 'helvetica neue', arial, sans-serif"
132__font_family_print__       = "'times new roman', serif"
133
134__nav_direct_background__   = "#FFF"
135__nav_direct_color__        = "#286da8"
136__box_shadow_colored__      = "0 0 .5em rgba(40,109,168,.5)"
137__box_shadow__              = "0 0 .5em rgb(153,153,153,.5)"
138__nav_menu_color__          = "#696969"
139__nav_menu_hover_color__    = "#286da8"
140__nav_menu_hover_bg__       = "#FFFFFF"
141
142__background_content__      = "#FFFFFF"
143__background_site__         = "#ECECEC"
144
145__default_border_radius__   = "5px"
146
147