1/* =Folded Plugin 2----------------------------------------------- */ 3 4.dokuwiki { 5 .file { 6 margin-bottom: 20px; 7 8 dt,dd { 9 margin-right: 0px !important; 10 margin-bottom: 0px !important; 11 } 12 } 13 14 p:has(a.folder.open) { 15 margin-bottom: 0px; 16 } 17 18 div.folded { 19 padding: 0px; 20 margin-bottom: 20px; 21 22 .file { 23 margin-bottom: 0px; 24 } 25 } 26 27 a.folder { 28 padding: 16px; 29 padding-left: 32px; 30 font-weight: bold; 31 background-color: @ini_border; 32 width: 100%; 33 display: block; 34 background-image: none; 35 position: relative; 36 37 &::before { 38 font-family: 'bootstrap-icons'; 39 position: absolute; 40 top: 12px; 41 right: 16px; 42 font-size: 24px; 43 content: "\F282"; 44 } 45 46 &.open { 47 background-color: @ini_theme_color; 48 background-image: none; 49 color: @ini_background; 50 51 &::before { 52 content: "\F286"; 53 } 54 } 55 } 56} 57