-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.css
More file actions
121 lines (103 loc) · 1.64 KB
/
Copy pathwindow.css
File metadata and controls
121 lines (103 loc) · 1.64 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
113
114
115
116
117
118
119
120
121
html,
body {
width: 100%;
height: 100%;
}
.bs-window {
display: flex;
flex-direction: column;
height: 100%;
}
.bs-window-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
background: var(--bs-cream);
border-bottom: 1px solid var(--bs-border);
flex-shrink: 0;
}
.bs-logo {
gap: 12px;
}
.bs-logo-text {
font-size: 22px;
}
.bs-close {
background: transparent;
border: none;
color: var(--bs-muted);
font-size: 28px;
line-height: 1;
cursor: pointer;
padding: 4px 10px;
border-radius: 8px;
transition:
background 0.15s,
color 0.15s;
}
.bs-close:hover,
.bs-close:focus {
background: var(--bs-hover);
color: var(--bs-text);
outline: none;
}
.bs-header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.bs-theme-toggle {
width: 34px;
height: 34px;
}
.bs-window-body {
flex: 1;
overflow-y: auto;
padding: 20px;
}
.bs-search-box {
position: relative;
display: flex;
align-items: center;
margin-bottom: 16px;
}
.bs-input {
padding: 14px 50px 14px 18px;
font-size: 16px;
}
.bs-search-btn {
right: 5px;
width: 40px;
height: 40px;
}
.bs-results {
gap: 12px;
}
.bs-loading,
.bs-empty,
.bs-error {
padding: 32px 16px;
}
.bs-result {
padding: 16px;
}
.bs-result-title {
font-size: 16px;
}
.bs-result-snippet {
font-size: 14px;
line-height: 1.5;
margin-bottom: 10px;
-webkit-line-clamp: 3;
}
.bs-window-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 20px;
border-top: 1px solid var(--bs-border);
color: var(--bs-muted);
font-size: 12px;
flex-shrink: 0;
}