-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathConsoleSearch.module.css
More file actions
80 lines (73 loc) · 1.55 KB
/
ConsoleSearch.module.css
File metadata and controls
80 lines (73 loc) · 1.55 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
.Container,
.ContainerFocused {
display: flex;
width: 100%;
align-items: center;
border: 2px solid transparent;
border-bottom-right-radius: 0.5rem;
overflow: hidden;
}
.ContainerFocused {
border-color: var(--focus-ring-input);
}
.Icon {
width: 1.75rem;
height: 1.75rem;
padding: 0.25rem;
flex: 0 0 1.75rem;
display: inline-block;
}
.Input {
width: 100%;
height: 1.75rem;
padding: 0 0.25rem;
background: none;
background-color: var(--background-color-inputs);
color: var(--color-default);
font-family: var(--font-family-monospace);
font-size: var(--font-size-regular);
outline: none;
border: none;
}
.Results {
display: flex;
align-items: center;
gap: 0.5ch;
white-space: nowrap;
margin-left: 0.5ch;
padding: 0 0.5ch;
font-size: var(--font-size-small);
}
.ResultsIconButton {
font-family: var(--font-family-monospace);
font-size: var(--font-size-regular);
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
color: var(--color-dim);
padding: 0;
width: 1.5rem;
height: 1.5rem;
border-radius: 0.5rem;
border: 2px solid transparent;
outline: none;
}
.ResultsIconButton:focus {
border-color: var(--focus-ring-input);
}
.ResultsIconButton:hover:not(.ResultsIconButton:disabled):not(.ResultsIconButtonActive) {
color: var(--color-default);
}
.ResultsIconButton:disabled {
color: var(--color-dimmer);
}
.ResultsIconButtonActive {
color: var(--background-color-primary-button);
}
.ResultsIcon {
width: 1rem;
height: 1rem;
display: inline-block;
}