blob: bfd48c5c2a65ac334a7c1f3e38cdde973f9c2e85 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
.navbarItem .inner {
background-color: var(--oxford-blue);
color: var(--almond);
padding: 8px;
border-radius: 8px;
transition-property: background-color, color;
transition-duration: .15s;
position: relative;
}
.navbarItem {
text-decoration: none;
display: block;
}
.navbarItem .icon { display: inline-block; }
.navbarItem .icon .collapseIcon {
transform: rotate(0deg);
transition-property: transform;
transition-duration: .3s;
}
.navbarItem .icon .collapseIcon.collapsed {
transform: rotate(-90deg);
}
.navbarItem .icon,
.navbarItem .title {
cursor: pointer;
}
.navbarItem.indentLevel0 { margin-bottom: 12px; }
.navbarItem.active .inner,
.navbarItem:hover .inner {
background-color: var(--heliotrope-gray);
color: var(--oxford-blue);
}
.navbarItem.chapter .inner {
background-color: transparent;
color: var(--fg);
padding: 4px 0;
overflow: visible;
}
.navbarItem .title {
vertical-align: top;
margin-left: 8px;
margin-top: 3px;
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: calc(100% - 32px);
}
.navbarItem.chapter .title { margin-top: 1px; }
.navbarItem.chapter .chapterChildren {
transition-property: height;
transition-duration: .3s;
overflow: hidden;
}
.navbarItem.chapter.childrenCollapsed > .chapterChildren { height: 0; }
.navbarItem.chapter > .chapterChildren { height: var(--children-height); }
.navbarItem .inner,
.navbarItem .icon,
.navbarItem .icon .collapseIcon {
height: 24px;
}
.navbarItem > div > svg {
vertical-align: super;
}
|