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; Define the stylesheets your template uses here. The second value 11; defines for which output media the style should be loaded. Currently 12; print, screen and all are supported. 13; You can reference CSS and LESS files here. Files referenced here will 14; be checked for updates when considering a cache rebuild while files 15; included through LESS' @import statements are not 16 17[stylesheets] 18 19css/basic.css = screen 20../dokuwiki/css/_imgdetail.css = screen 21../dokuwiki/css/_media_popup.css = screen 22../dokuwiki/css/_media_fullscreen.css = screen 23../dokuwiki/css/_fileuploader.css = screen 24../dokuwiki/css/_tabs.css = screen 25../dokuwiki/css/_links.css = screen 26../dokuwiki/css/_toc.css = screen 27../dokuwiki/css/_footnotes.css = screen 28../dokuwiki/css/_search.css = screen 29../dokuwiki/css/_recent.css = screen 30../dokuwiki/css/_diff.css = screen 31../dokuwiki/css/_edit.css = screen 32../dokuwiki/css/_modal.css = screen 33../dokuwiki/css/_forms.css = screen 34../dokuwiki/css/_admin.css = screen 35css/structure.css = screen 36css/design.css = screen 37css/content.css = screen 38css/includes.css = screen 39 40css/nashville/stylesheet.css = screen 41css/cowboy.less = screen 42 43css/mobile.css = all 44css/print.css = print 45 46css/cowboy_mobile.less = all 47 48; This section is used to configure some placeholder values used in 49; the stylesheets. Changing this file is the simplest method to 50; give your wiki a new look. 51; Placeholders defined here will also be made available as LESS variables 52; (with surrounding underscores removed, and the prefix @ini_ added) 53 54[replacements] 55 56;-------------------------------------------------------------------------- 57;------ guaranteed dokuwiki color placeholders that every plugin can use 58 59; main text and background colors 60__text__ = "#333" ; @ini_text 61__background__ = "#fff" ; @ini_background 62; alternative text and background colors 63__text_alt__ = "#999" ; @ini_text_alt 64__background_alt__ = "#eee" ; @ini_background_alt 65; neutral text and background colors 66__text_neu__ = "#666" ; @ini_text_neu 67__background_neu__ = "#ddd" ; @ini_background_neu 68; border color 69__border__ = "#ccc" ; @ini_border 70 71; highlighted text (e.g. search snippets) 72__highlight__ = "#ff9" ; @ini_highlight 73 74;-------------------------------------------------------------------------- 75 76; these are used for links 77__existing__ = "blue" ; @ini_existing 78__missing__ = "#f30" ; @ini_missing 79 80; widths 81__site_width__ = "64em" ; @ini_site_width 82__sidebar_width__ = "16em" ; @ini_sidebar_width 83