summaryrefslogtreecommitdiff
path: root/docs/_static/collapsible_container.css
blob: bcad6298e97c1bd933c7e7f0460b07c192b0e05b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Taken from: https://github.com/plone/training/blob/master/_static/custom.css */

.toggle {
    /* background: none repeat scroll 0 0 #e7f2fa; */
    padding: 12px;
    line-height: 24px;
    margin-bottom: 24px;
}

.toggle .admonition-title {
    display: block;
    clear: both;
    cursor: pointer;
}

.toggle .admonition-title:after {
    content: " ▶";
}

.toggle .admonition-title.open:after {
    content: " ▼";
}

.toggle p:last-child {
    margin-bottom: 0;
}