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.

91 lines
1.9 KiB

14 years ago
  1. /**
  2. * This file provides styles for the TOC (table of contents), the
  3. * sitemap (?do=index) and backlinks (?do=backlink).
  4. */
  5. /* toc
  6. ********************************************************************/
  7. /* toc container */
  8. .dokuwiki div.toc {
  9. float: right;
  10. margin: 0 0 1.4em 1.4em;
  11. width: 12em;
  12. }
  13. /*____________ toc header ____________*/
  14. .dokuwiki div.tocheader {
  15. padding: 0.2em 0.4em;
  16. margin-bottom: .2em;
  17. font-weight: bold;
  18. background-color: __background_alt__;
  19. color: __text__;
  20. }
  21. /* css arrow */
  22. .dokuwiki .toc span.toc_open,
  23. .dokuwiki .toc span.toc_close {
  24. border: .4em solid __background_alt__;
  25. float: right;
  26. display: block;
  27. margin: 0 .2em 0 0;
  28. }
  29. .dokuwiki .toc span.toc_open span,
  30. .dokuwiki .toc span.toc_close span {
  31. display: none;
  32. }
  33. .dokuwiki .toc span.toc_open {
  34. margin-top: .4em;
  35. border-top: .4em solid __text__;
  36. }
  37. .dokuwiki .toc span.toc_close {
  38. margin-top: 0;
  39. border-bottom: .4em solid __text__;
  40. }
  41. /*____________ toc list ____________*/
  42. .dokuwiki #toc__inside {
  43. padding: .2em .4em;
  44. background-color: __background_alt__;
  45. color: __text__;
  46. }
  47. .dokuwiki #toc__inside ul {
  48. padding: 0;
  49. margin: 0;
  50. }
  51. .dokuwiki #toc__inside ul li {
  52. list-style: none;
  53. padding: 0;
  54. margin: 0;
  55. }
  56. .dokuwiki #toc__inside ul ul {
  57. padding-left: 1em;
  58. }
  59. .dokuwiki #toc__inside ul ul li {
  60. }
  61. .dokuwiki #toc__inside ul li a {
  62. }
  63. /* in case of toc list jumping one level
  64. (e.g. if heading level 3 follows directly after heading level 1) */
  65. .dokuwiki #toc__inside ul li.clear {
  66. }
  67. /* sitemap (and backlinkss)
  68. ********************************************************************/
  69. .dokuwiki ul.idx {
  70. padding-left: 0;
  71. }
  72. .dokuwiki ul.idx li {
  73. list-style-image: url(images/bullet.png);
  74. }
  75. .dokuwiki ul.idx li.open {
  76. list-style-image: url(images/open.png);
  77. }
  78. .dokuwiki ul.idx li.closed {
  79. list-style-image: url(images/closed.png);
  80. }