-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (46 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
54 lines (46 loc) · 1.46 KB
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
/* BrowserAct Cloud: render Mintlify's top-level sidebar groups as accordions. */
html[data-browseract-cloud-nav="true"] .sidebar-group-header {
border-radius: 0.75rem;
cursor: pointer;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.25rem;
margin: 0;
padding: 0.375rem 0.75rem 0.375rem 1rem;
user-select: none;
}
html[data-browseract-cloud-nav="true"] div:has(> .sidebar-group-header) {
margin-bottom: 0;
margin-top: 0;
}
html[data-browseract-cloud-nav="true"] .sidebar-group-header:hover {
background: rgb(75 85 99 / 0.05);
}
html[data-browseract-cloud-nav="true"] .sidebar-group-header[data-expanded="true"] {
background: color-mix(in srgb, var(--primary) 10%, transparent);
color: var(--primary);
font-weight: 500;
}
html[data-browseract-cloud-nav="true"] .sidebar-group-header::after {
border-bottom: 1.5px solid currentColor;
border-right: 1.5px solid currentColor;
content: "";
height: 0.375rem;
margin-left: auto;
margin-right: 0.125rem;
transform: rotate(-45deg);
transition: transform 150ms ease;
width: 0.375rem;
}
html[data-browseract-cloud-nav="true"] .sidebar-group-header[data-expanded="true"]::after {
transform: rotate(45deg);
}
html[data-browseract-cloud-nav="true"] .sidebar-group[data-cloud-collapsed="true"] {
display: none;
}
html[data-browseract-cloud-nav="true"] .sidebar-nav-group-divider {
display: none;
}
html[data-browseract-cloud-nav="true"] div:has(> .sidebar-nav-group-divider) {
display: none;
}