forked from turnermm/sectiontoggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
34 lines (29 loc) · 711 Bytes
/
style.css
File metadata and controls
34 lines (29 loc) · 711 Bytes
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
27
28
29
30
31
32
33
34
[class*="header__"].st_closed::before {
content: url('chevron-down.svg');
vertical-align: middle;
padding-right: 0.25em;
}
[class*="header__"].st_opened::before {
content: url('chevron-up.svg');
vertical-align: middle;
padding-right: 0.25em;
}
.section_toggle {
cursor: pointer;
display: inline-block;
border-radius: 4px;
}
.section_toggle:hover {
background-color: #337AB7;
color: #ffffff;
}
.section_toggle span {
display: none;
}
/* Hide the exclusion marker spans */
.stoggle_exclude_start,
.stoggle_exclude_end {
display: none !important;
}
/* Headers marked as excluded from collapse will not have toggle behavior */
/* The stoggle_no_collapse class is added dynamically by JavaScript */