xref: /template/sprintdoc/css/plugins/folded.less (revision a21c6f8785ac4967f21ffe25bb28652e3383f951)
1/**
2 * This file provides styles for the toggle "folded"
3 */
4
5
6/* + + + + +  global  + + + + + */
7
8#dokuwiki__content {
9    a.folder {
10        background: transparent url("svg.php?svg=down.svg&f=existing") right center no-repeat;
11        color: @ini_existing;
12        padding-right: 20px;
13
14        &.open {
15            background-image: url("svg.php?svg=up.svg&f=existing");
16        }
17    }
18
19    div.folded {
20        box-shadow: @box-shadow-colored;
21        border: 1px solid fade(@ini_existing, 50%);
22        border-radius: 0;
23        margin-top: -.7rem;
24        margin-bottom: .7rem;
25        padding: .5em;
26
27        p {
28            margin: .5rem 0;
29        }
30    }
31
32    span.folded {
33        border: 1px dotted @ini_border;
34    }
35}
36