forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaneToggle.css
More file actions
46 lines (38 loc) · 874 Bytes
/
PaneToggle.css
File metadata and controls
46 lines (38 loc) · 874 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
35
36
37
38
39
40
41
42
43
44
45
46
.toggle-button-start,
.toggle-button-end {
transform: translate(0, 2px);
transition: transform 0.25s ease-in-out;
cursor: pointer;
padding: 5px 2px;
}
.toggle-button-start.vertical,
.toggle-button-end.vertical {
padding: 4px 2px;
}
.toggle-button-start svg,
.toggle-button-end svg {
width: 16px;
fill: var(--theme-comment);
}
.theme-dark .toggle-button-start svg,
.theme-dark .toggle-button-end svg {
fill: var(--theme-comment-alt);
}
.toggle-button-end {
margin-inline-end: 5px;
margin-inline-start: auto;
}
.toggle-button-start {
margin-inline-start: 5px;
}
html:not([dir="rtl"]) .toggle-button-end svg,
html[dir="rtl"] .toggle-button-start svg {
transform: rotate(180deg);
}
html .toggle-button-end.vertical svg {
transform: rotate(-90deg);
}
.toggle-button-start.collapsed,
.toggle-button-end.collapsed {
transform: rotate(180deg);
}