You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

109 lines
3.9 KiB

  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 ARSAVA <dokuwiki@dev.arsava.com>
  11. ; @link https://www.dokuwiki.org/template:vector
  12. ; @link https://www.dokuwiki.org/devel:style.ini
  13. ; Please see http://www.php.net/manual/en/function.parse-ini-file.php
  14. ; for limitations of the ini format used here.
  15. ; To extend this file or make changes to it, it is recommended to create
  16. ; a style.local.ini file to prevent losing any changes after an upgrade.
  17. ; Please don't forget to copy the section your changes should be under
  18. ; (i.e. [stylesheets] or [replacements]) into that file as well.
  19. ; Define the stylesheets your template uses here. The second value
  20. ; defines for which output media the style should be loaded. Currently
  21. ; print, screen and all are supported.
  22. [stylesheets]
  23. ; screen
  24. ; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
  25. static/3rd/dokuwiki/_imgdetail.css = screen
  26. static/3rd/dokuwiki/_media_popup.css = screen
  27. static/3rd/dokuwiki/_media_fullscreen.css = screen
  28. static/3rd/dokuwiki/_fileuploader.css = screen
  29. static/3rd/dokuwiki/_tabs.css = screen
  30. static/3rd/dokuwiki/_links.css = screen
  31. static/3rd/dokuwiki/_toc.css = screen
  32. static/3rd/dokuwiki/_footnotes.css = screen
  33. static/3rd/dokuwiki/_search.css = screen
  34. static/3rd/dokuwiki/_recent.css = screen
  35. static/3rd/dokuwiki/_diff.css = screen
  36. static/3rd/dokuwiki/_edit.css = screen
  37. static/3rd/dokuwiki/_modal.css = screen
  38. static/3rd/dokuwiki/_forms.css = screen
  39. static/3rd/dokuwiki/_admin.css = screen
  40. ; load the most important MediaWiki vector styles
  41. static/3rd/vector/main-ltr.css = screen
  42. ; load the specific "vector for dokuwiki" styles
  43. static/css/screen.css = screen
  44. user/screen.css = screen
  45. ; print
  46. ; note to myself: don't forget to respect the "print" action for the "printable
  47. ; version" within "main.php" when adding new print styles.
  48. ; I think this function is silly (cause therefore we got
  49. ; different "media" but some people *always* searching for such
  50. ; print version links). Good text about this: <http://j.mp/6r3Kgf>
  51. ; load the DokuWiki styles. See <http://j.mp/eq8zSo> why I am doing this.
  52. static/3rd/dokuwiki/print.css = print
  53. ; load the specific "vector for dokuwiki" styles
  54. static/css/print.css = print
  55. user/print.css = print
  56. ; right-to-left
  57. ; load the most important MediaWiki vector styles
  58. static/3rd/vector/main-rtl.css = rtl
  59. ; load the specific "vector for dokuwiki" styles
  60. static/css/rtl.css = rtl
  61. user/rtl.css = rtl
  62. ; This section is used to configure some placeholder values used in
  63. ; the stylesheets. Changing this file is the simplest method to
  64. ; give your wiki a new look.
  65. [replacements]
  66. ;--------------------------------------------------------------------------
  67. ;------ guaranteed dokuwiki color placeholders that every plugin can use
  68. ; main text and background colors
  69. ;
  70. __text__ = "#000"
  71. __background__ = "#fff"
  72. ; alternative text and background colors
  73. __text_alt__ = "#000"
  74. __background_alt__ = "#dee7ec"
  75. ; neutral text and background colors
  76. __text_neu__ = "#000"
  77. __background_neu__ = "#fff"
  78. ; border color
  79. __border__ = "#8cacbb"
  80. ;--------------------------------------------------------------------------
  81. ; these are used for links
  82. __existing__ = "#002bb8"
  83. __missing__ = "#ba0000"
  84. ; highlighting search snippets (deprecated since 2012-09-10 Adora Belle, comes
  85. ; from core and will therefore be removed from here if pre-Adora Belle support
  86. ; will be dropped)
  87. __highlight__ = "#ff9"