-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathElementsPanel.module.css
More file actions
112 lines (102 loc) · 1.88 KB
/
ElementsPanel.module.css
File metadata and controls
112 lines (102 loc) · 1.88 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.Panel {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
gap: 0.25rem;
background-color: var(--body-bgcolor);
}
.PanelLoader {
position: absolute;
width: 100%;
}
.SearchRow {
flex: 0 0 auto;
display: flex;
flex-direction: row;
align-items: center;
gap: 0.25rem;
padding: 0.25rem;
border-bottom: 1px solid var(--theme-splitter-color);
}
.SearchIconAndInput {
flex: 1 1 auto;
height: 1.25rem;
display: flex;
flex-direction: row;
align-items: center;
font-size: var(--font-size-regular);
background-color: var(--background-color-inputs);
color: var(--color-default);
padding: 0 0.25rem 0 0;
border: 2px solid #0000;
border-radius: 0.25rem;
}
.SearchIconAndInput:focus-within {
border-color: var(--focus-ring-input);
}
.AdvancedButton {
flex: 0 1 auto;
outline: none;
background: none;
padding: 0;
border: none;
cursor: pointer;
border: 2px solid #0000;
border-radius: 0.25rem;
}
.AdvancedButton:focus {
border-color: var(--color-control-background-active);
}
.AdvancedButton[data-active] {
color: var(--color-control-background-active);
}
.AdvancedIcon,
.SearchIcon {
width: 1rem;
height: 1rem;
}
.SearchIcon {
margin: 0.25rem;
}
.SearchInput {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0;
transition: 200ms opacity;
font-size: var(--font-size-regular);
}
.SearchInput[data-search-in-progress] {
opacity: 0.5;
}
.SearchInput:focus {
outline: none;
border: none;
box-shadow: none;
}
.SearchResults {
font-size: var(--font-size-small);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ListRow {
flex: 1 1 auto;
padding-bottom: 0.25rem;
}
.SpinnerIcon {
color: var(--color-dim);
width: 1rem;
height: 1rem;
animation: 1s spin linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0);
}
100% {
transform: rotate(359deg);
}
}