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