1/** 2 * This file provides styles for the TOC (table of contents), the 3 * sitemap (?do=index) and backlinks (?do=backlink). 4 */ 5 6/* toc 7********************************************************************/ 8 9/* toc container */ 10#dw__toc { 11 float: right; 12 margin: 0 0 1.4em 1.4em; 13 width: 12em; 14 background-color: @ini_background_alt; 15 color: inherit; 16} 17[dir=rtl] #dw__toc { 18 float: left; 19 margin: 0 1.4em 1.4em 0; 20} 21 22/*____________ toc header ____________*/ 23 24.dokuwiki h3.toggle { 25 padding: .2em .5em; 26 font-weight: bold; 27} 28 29.dokuwiki .toggle strong { 30 float: right; 31 margin: 0 .2em; 32} 33[dir=rtl] .dokuwiki .toggle strong { 34 float: left; 35} 36 37/*____________ toc list ____________*/ 38 39#dw__toc > div { 40 padding: .2em .5em; 41} 42#dw__toc ul { 43 padding: 0; 44 margin: 0; 45} 46#dw__toc ul li { 47 list-style: none; 48 padding: 0; 49 margin: 0; 50 line-height: 1.1; 51} 52#dw__toc ul li div.li { 53 padding: .15em 0; 54} 55#dw__toc ul ul { 56 padding-left: 1em; 57} 58[dir=rtl] #dw__toc ul ul { 59 padding-left: 0; 60 padding-right: 1em; 61} 62#dw__toc ul ul li { 63} 64#dw__toc ul li a { 65} 66 67/* in case of toc list jumping one level 68 (e.g. if heading level 3 follows directly after heading level 1) */ 69#dw__toc ul li.clear { 70} 71 72 73/* sitemap (and backlinks) 74********************************************************************/ 75 76.dokuwiki ul.idx { 77 padding-left: 0; 78} 79[dir=rtl] .dokuwiki ul.idx { 80 padding-right: 0; 81} 82.dokuwiki ul.idx li { 83 list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-circle-filled" width="8" height="8" viewBox="-5 -5 32 32" stroke-width="1.5" stroke="%23ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M7 3.34a10 10 0 1 1 -4.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 4.995 -8.336z" stroke-width="0" fill="%23ffffff" /></svg>'); 84} 85.dokuwiki ul.idx li.open { 86 list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-chevron-down" width="12" height="12" viewBox="0 0 18 16" stroke-width="1.5" stroke="%23ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 9l6 6l6 -6" /></svg>'); 87} 88.dokuwiki ul.idx li.closed { 89 list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-chevron-right" width="12" height="12" viewBox="0 0 18 18" stroke-width="1.5" stroke="%23ffffff" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>'); 90} 91[dir=rtl] .dokuwiki ul.idx li.closed { 92 list-style-image: url(../../images/closed-rtl.png); 93} 94