@theia/search-in-workspace 1.53.0-next.5 → 1.53.0-next.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,400 +1,400 @@
1
- /********************************************************************************
2
- * Copyright (C) 2017-2018 Ericsson and others.
3
- *
4
- * This program and the accompanying materials are made available under the
5
- * terms of the Eclipse Public License v. 2.0 which is available at
6
- * http://www.eclipse.org/legal/epl-2.0.
7
- *
8
- * This Source Code may also be made available under the following Secondary
9
- * Licenses when the conditions for such availability set forth in the Eclipse
10
- * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- * with the GNU Classpath Exception which is available at
12
- * https://www.gnu.org/software/classpath/license.html.
13
- *
14
- * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- ********************************************************************************/
16
-
17
- #search-in-workspace {
18
- height: 100%;
19
- }
20
-
21
- #search-in-workspace .theia-TreeContainer.empty {
22
- overflow: hidden;
23
- }
24
-
25
- .t-siw-search-container {
26
- padding: 0px 1px;
27
- display: flex;
28
- flex-direction: column;
29
- height: 100%;
30
- box-sizing: border-box;
31
- }
32
-
33
- .t-siw-search-container .theia-ExpansionToggle {
34
- padding-right: 4px;
35
- min-width: 6px;
36
- }
37
-
38
- .t-siw-search-container .theia-input {
39
- box-sizing: border-box;
40
- flex: 1;
41
- line-height: var(--theia-content-line-height);
42
- max-height: calc(2 * 3px + 7 * var(--theia-content-line-height));
43
- min-width: 16px;
44
- padding: 3px 0 3px 4px;
45
- resize: none;
46
- width: 100%;
47
- }
48
-
49
- .t-siw-search-container #search-input-field:focus {
50
- border: none;
51
- outline: none;
52
- }
53
-
54
- .t-siw-search-container #search-input-field {
55
- background: none;
56
- border: none;
57
- }
58
-
59
- .t-siw-search-container .searchHeader {
60
- padding: 5px 5px 15px 2px;
61
- }
62
-
63
- .t-siw-search-container .searchHeader .controls.button-container {
64
- height: var(--theia-content-line-height);
65
- margin-bottom: 5px;
66
- }
67
-
68
- .t-siw-search-container .searchHeader .search-field-container {
69
- background: var(--theia-input-background);
70
- border-style: solid;
71
- border-width: var(--theia-border-width);
72
- border-color: var(--theia-input-background);
73
- border-radius: 2px;
74
- }
75
-
76
- .t-siw-search-container .searchHeader .search-field-container.focused {
77
- border-color: var(--theia-focusBorder);
78
- }
79
-
80
- .t-siw-search-container .searchHeader .search-field {
81
- display: flex;
82
- align-items: center;
83
- }
84
-
85
- .t-siw-search-container .searchHeader .search-field:focus {
86
- border: none;
87
- outline: none;
88
- }
89
-
90
- .t-siw-search-container .searchHeader .search-field .option {
91
- opacity: 0.7;
92
- cursor: pointer;
93
- }
94
-
95
- .t-siw-search-container .searchHeader .search-field .option.enabled {
96
- color: var(--theia-inputOption-activeForeground);
97
- border: var(--theia-border-width) var(--theia-inputOption-activeBorder) solid;
98
- background-color: var(--theia-inputOption-activeBackground);
99
- opacity: 1;
100
- }
101
-
102
- .t-siw-search-container .searchHeader .search-field .option:hover {
103
- opacity: 1;
104
- }
105
-
106
- .t-siw-search-container .searchHeader .search-field .option-buttons {
107
- height: 23px;
108
- display: flex;
109
- align-items: center;
110
- align-self: flex-start;
111
- background-color: none;
112
- margin: 2px;
113
- }
114
-
115
- .t-siw-search-container .searchHeader .search-field-container.tooManyResults {
116
- border-style: solid;
117
- border-width: var(--theia-border-width);
118
- border-color: var(--theia-inputValidation-warningBorder);
119
- }
120
-
121
- .t-siw-search-container
122
- .searchHeader
123
- .search-field-container
124
- .search-notification {
125
- height: 0;
126
- display: none;
127
- width: 100%;
128
- position: relative;
129
- }
130
-
131
- .t-siw-search-container
132
- .searchHeader
133
- .search-field-container.focused
134
- .search-notification.show {
135
- display: block;
136
- }
137
-
138
- .t-siw-search-container .searchHeader .search-notification div {
139
- background-color: var(--theia-inputValidation-warningBackground);
140
- width: calc(100% + 2px);
141
- margin-left: -1px;
142
- color: var(--theia-inputValidation-warningForeground);
143
- z-index: 1000;
144
- position: absolute;
145
- border: 1px solid var(--theia-inputValidation-warningBorder);
146
- box-sizing: border-box;
147
- padding: 3px;
148
- }
149
-
150
- .t-siw-search-container .searchHeader .button-container {
151
- text-align: center;
152
- display: flex;
153
- justify-content: center;
154
- }
155
-
156
- .t-siw-search-container .searchHeader .search-field .option,
157
- .t-siw-search-container .searchHeader .button-container .btn {
158
- width: 21px;
159
- height: 21px;
160
- margin: 0 1px;
161
- display: inline-block;
162
- box-sizing: border-box;
163
- align-items: center;
164
- user-select: none;
165
- background-repeat: no-repeat;
166
- background-position: center;
167
- border: var(--theia-border-width) solid transparent;
168
- }
169
-
170
- .t-siw-search-container .searchHeader .search-field .fa.option {
171
- display: flex;
172
- align-items: center;
173
- justify-content: center;
174
- }
175
-
176
- .t-siw-search-container .searchHeader .search-details {
177
- position: relative;
178
- padding-top: 5px;
179
- }
180
-
181
- .t-siw-search-container .searchHeader .search-details .button-container {
182
- position: absolute;
183
- width: 25px;
184
- top: 0;
185
- right: 0;
186
- cursor: pointer;
187
- }
188
-
189
- .t-siw-search-container .searchHeader .glob-field-container.hidden {
190
- display: none;
191
- }
192
-
193
- .t-siw-search-container .searchHeader .glob-field-container .glob-field {
194
- margin-bottom: 8px;
195
- margin-left: 18px;
196
- display: flex;
197
- flex-direction: column;
198
- }
199
-
200
- .t-siw-search-container .searchHeader .glob-field-container .glob-field .label {
201
- margin-bottom: 3px;
202
- user-select: none;
203
- font-size: var(--theia-ui-font-size0);
204
- }
205
-
206
- .t-siw-search-container
207
- .searchHeader
208
- .glob-field-container
209
- .glob-field
210
- .theia-input:not(:focus)::placeholder {
211
- color: transparent;
212
- }
213
-
214
- .t-siw-search-container .resultContainer {
215
- height: 100%;
216
- }
217
-
218
- .t-siw-search-container .result {
219
- overflow: hidden;
220
- width: 100%;
221
- flex: 1;
222
- }
223
-
224
- .t-siw-search-container .result .result-head {
225
- display: flex;
226
- }
227
-
228
- .t-siw-search-container .result .result-head .fa,
229
- .t-siw-search-container .result .result-head .theia-file-icons-js {
230
- margin: 0 3px;
231
- }
232
-
233
- .t-siw-search-container .result .result-head .file-name {
234
- margin-right: 5px;
235
- }
236
-
237
- .t-siw-search-container .result .result-head .file-path {
238
- font-size: var(--theia-ui-font-size0);
239
- margin-left: 3px;
240
- }
241
-
242
- .t-siw-search-container .resultLine {
243
- flex-grow: 1;
244
- }
245
-
246
- .t-siw-search-container .resultLine .match {
247
- white-space: pre;
248
- background: var(--theia-editor-findMatchHighlightBackground);
249
- border: 1px solid var(--theia-editor-findMatchHighlightBorder);
250
- }
251
- .theia-hc .t-siw-search-container .resultLine .match {
252
- border-style: dashed;
253
- }
254
-
255
- .t-siw-search-container .resultLine .match.strike-through {
256
- text-decoration: line-through;
257
- background: var(--theia-diffEditor-removedTextBackground);
258
- border-color: var(--theia-diffEditor-removedTextBorder);
259
- }
260
-
261
- .t-siw-search-container .resultLine .replace-term {
262
- background: var(--theia-diffEditor-insertedTextBackground);
263
- border: 1px solid var(--theia-diffEditor-insertedTextBorder);
264
- }
265
- .theia-hc .t-siw-search-container .resultLine .replace-term {
266
- border-style: dashed;
267
- }
268
-
269
- .t-siw-search-container .match-line-num {
270
- font-size: .9em;
271
- margin-left: 7px;
272
- margin-right: 4px;
273
- opacity: .7;
274
- }
275
-
276
- .t-siw-search-container .result-head-info {
277
- align-items: center;
278
- display: inline-flex;
279
- flex-grow: 1;
280
- }
281
-
282
- .search-in-workspace-editor-match {
283
- background: var(--theia-editor-findMatchHighlightBackground);
284
- }
285
-
286
- .current-search-in-workspace-editor-match {
287
- background: var(--theia-editor-findMatchBackground);
288
- }
289
-
290
- .current-match-range-highlight {
291
- background: var(--theia-editor-findRangeHighlightBackground);
292
- }
293
-
294
- .result-node-buttons {
295
- display: none;
296
- }
297
-
298
- .theia-TreeNode:hover .result-node-buttons {
299
- display: flex;
300
- justify-content: flex-end;
301
- align-items: center;
302
- align-self: center;
303
- }
304
-
305
- .theia-TreeNode:hover .result-head .notification-count-container {
306
- display: none;
307
- }
308
-
309
- .result-node-buttons > span {
310
- width: 16px;
311
- height: 16px;
312
- margin-left: 2.5px;
313
- margin-right: 0.5px;
314
- background-repeat: no-repeat;
315
- background-position: center;
316
- background-size: contain;
317
- border-radius: 5px;
318
- }
319
-
320
- .result-node-buttons > span:hover {
321
- background-color: var(--theia-toolbar-hoverBackground);
322
- }
323
-
324
- .search-and-replace-container {
325
- display: flex;
326
- }
327
-
328
- .replace-toggle {
329
- display: flex;
330
- align-items: center;
331
- width: 16px;
332
- min-width: 16px;
333
- justify-content: center;
334
- margin-right: 2px;
335
- box-sizing: border-box;
336
- }
337
-
338
- .theia-side-panel .replace-toggle {
339
- width: 16px;
340
- min-width: 16px;
341
- }
342
-
343
- .theia-side-panel .replace-toggle .codicon {
344
- padding: 0px;
345
- }
346
-
347
- .replace-toggle:hover {
348
- background: rgba(50%, 50%, 50%, 0.2);
349
- }
350
-
351
- .search-and-replace-fields {
352
- display: flex;
353
- flex-direction: column;
354
- flex: 1;
355
- }
356
-
357
- .replace-field {
358
- display: flex;
359
- margin-top: 5px;
360
- }
361
-
362
- .replace-field.hidden {
363
- display: none;
364
- }
365
-
366
- .replace-all-button-container {
367
- width: 25px;
368
- display: flex;
369
- align-items: start;
370
- justify-content: center;
371
- padding-top: 3px;
372
- }
373
-
374
- .result-node-buttons .replace-result {
375
- background-image: var(--theia-icon-replace);
376
- }
377
- .result-node-buttons .replace-all-result {
378
- background-image: var(--theia-icon-replace-all);
379
- }
380
-
381
- .replace-all-button-container .action-label.disabled {
382
- opacity: var(--theia-mod-disabled-opacity);
383
- background: transparent;
384
- cursor: default;
385
- }
386
-
387
- .highlighted-count-container {
388
- background-color: var(--theia-list-activeSelectionBackground);
389
- color: var(--theia-list-activeSelectionForeground);
390
- }
391
-
392
- .t-siw-search-container .searchHeader .search-info {
393
- color: var(--theia-descriptionForeground);
394
- margin-left: 17px;
395
- }
396
-
397
- .theia-siw-lineNumber {
398
- opacity: 0.7;
399
- padding-right: 4px;
400
- }
1
+ /********************************************************************************
2
+ * Copyright (C) 2017-2018 Ericsson and others.
3
+ *
4
+ * This program and the accompanying materials are made available under the
5
+ * terms of the Eclipse Public License v. 2.0 which is available at
6
+ * http://www.eclipse.org/legal/epl-2.0.
7
+ *
8
+ * This Source Code may also be made available under the following Secondary
9
+ * Licenses when the conditions for such availability set forth in the Eclipse
10
+ * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ * with the GNU Classpath Exception which is available at
12
+ * https://www.gnu.org/software/classpath/license.html.
13
+ *
14
+ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ ********************************************************************************/
16
+
17
+ #search-in-workspace {
18
+ height: 100%;
19
+ }
20
+
21
+ #search-in-workspace .theia-TreeContainer.empty {
22
+ overflow: hidden;
23
+ }
24
+
25
+ .t-siw-search-container {
26
+ padding: 0px 1px;
27
+ display: flex;
28
+ flex-direction: column;
29
+ height: 100%;
30
+ box-sizing: border-box;
31
+ }
32
+
33
+ .t-siw-search-container .theia-ExpansionToggle {
34
+ padding-right: 4px;
35
+ min-width: 6px;
36
+ }
37
+
38
+ .t-siw-search-container .theia-input {
39
+ box-sizing: border-box;
40
+ flex: 1;
41
+ line-height: var(--theia-content-line-height);
42
+ max-height: calc(2 * 3px + 7 * var(--theia-content-line-height));
43
+ min-width: 16px;
44
+ padding: 3px 0 3px 4px;
45
+ resize: none;
46
+ width: 100%;
47
+ }
48
+
49
+ .t-siw-search-container #search-input-field:focus {
50
+ border: none;
51
+ outline: none;
52
+ }
53
+
54
+ .t-siw-search-container #search-input-field {
55
+ background: none;
56
+ border: none;
57
+ }
58
+
59
+ .t-siw-search-container .searchHeader {
60
+ padding: 5px 5px 15px 2px;
61
+ }
62
+
63
+ .t-siw-search-container .searchHeader .controls.button-container {
64
+ height: var(--theia-content-line-height);
65
+ margin-bottom: 5px;
66
+ }
67
+
68
+ .t-siw-search-container .searchHeader .search-field-container {
69
+ background: var(--theia-input-background);
70
+ border-style: solid;
71
+ border-width: var(--theia-border-width);
72
+ border-color: var(--theia-input-background);
73
+ border-radius: 2px;
74
+ }
75
+
76
+ .t-siw-search-container .searchHeader .search-field-container.focused {
77
+ border-color: var(--theia-focusBorder);
78
+ }
79
+
80
+ .t-siw-search-container .searchHeader .search-field {
81
+ display: flex;
82
+ align-items: center;
83
+ }
84
+
85
+ .t-siw-search-container .searchHeader .search-field:focus {
86
+ border: none;
87
+ outline: none;
88
+ }
89
+
90
+ .t-siw-search-container .searchHeader .search-field .option {
91
+ opacity: 0.7;
92
+ cursor: pointer;
93
+ }
94
+
95
+ .t-siw-search-container .searchHeader .search-field .option.enabled {
96
+ color: var(--theia-inputOption-activeForeground);
97
+ border: var(--theia-border-width) var(--theia-inputOption-activeBorder) solid;
98
+ background-color: var(--theia-inputOption-activeBackground);
99
+ opacity: 1;
100
+ }
101
+
102
+ .t-siw-search-container .searchHeader .search-field .option:hover {
103
+ opacity: 1;
104
+ }
105
+
106
+ .t-siw-search-container .searchHeader .search-field .option-buttons {
107
+ height: 23px;
108
+ display: flex;
109
+ align-items: center;
110
+ align-self: flex-start;
111
+ background-color: none;
112
+ margin: 2px;
113
+ }
114
+
115
+ .t-siw-search-container .searchHeader .search-field-container.tooManyResults {
116
+ border-style: solid;
117
+ border-width: var(--theia-border-width);
118
+ border-color: var(--theia-inputValidation-warningBorder);
119
+ }
120
+
121
+ .t-siw-search-container
122
+ .searchHeader
123
+ .search-field-container
124
+ .search-notification {
125
+ height: 0;
126
+ display: none;
127
+ width: 100%;
128
+ position: relative;
129
+ }
130
+
131
+ .t-siw-search-container
132
+ .searchHeader
133
+ .search-field-container.focused
134
+ .search-notification.show {
135
+ display: block;
136
+ }
137
+
138
+ .t-siw-search-container .searchHeader .search-notification div {
139
+ background-color: var(--theia-inputValidation-warningBackground);
140
+ width: calc(100% + 2px);
141
+ margin-left: -1px;
142
+ color: var(--theia-inputValidation-warningForeground);
143
+ z-index: 1000;
144
+ position: absolute;
145
+ border: 1px solid var(--theia-inputValidation-warningBorder);
146
+ box-sizing: border-box;
147
+ padding: 3px;
148
+ }
149
+
150
+ .t-siw-search-container .searchHeader .button-container {
151
+ text-align: center;
152
+ display: flex;
153
+ justify-content: center;
154
+ }
155
+
156
+ .t-siw-search-container .searchHeader .search-field .option,
157
+ .t-siw-search-container .searchHeader .button-container .btn {
158
+ width: 21px;
159
+ height: 21px;
160
+ margin: 0 1px;
161
+ display: inline-block;
162
+ box-sizing: border-box;
163
+ align-items: center;
164
+ user-select: none;
165
+ background-repeat: no-repeat;
166
+ background-position: center;
167
+ border: var(--theia-border-width) solid transparent;
168
+ }
169
+
170
+ .t-siw-search-container .searchHeader .search-field .fa.option {
171
+ display: flex;
172
+ align-items: center;
173
+ justify-content: center;
174
+ }
175
+
176
+ .t-siw-search-container .searchHeader .search-details {
177
+ position: relative;
178
+ padding-top: 5px;
179
+ }
180
+
181
+ .t-siw-search-container .searchHeader .search-details .button-container {
182
+ position: absolute;
183
+ width: 25px;
184
+ top: 0;
185
+ right: 0;
186
+ cursor: pointer;
187
+ }
188
+
189
+ .t-siw-search-container .searchHeader .glob-field-container.hidden {
190
+ display: none;
191
+ }
192
+
193
+ .t-siw-search-container .searchHeader .glob-field-container .glob-field {
194
+ margin-bottom: 8px;
195
+ margin-left: 18px;
196
+ display: flex;
197
+ flex-direction: column;
198
+ }
199
+
200
+ .t-siw-search-container .searchHeader .glob-field-container .glob-field .label {
201
+ margin-bottom: 3px;
202
+ user-select: none;
203
+ font-size: var(--theia-ui-font-size0);
204
+ }
205
+
206
+ .t-siw-search-container
207
+ .searchHeader
208
+ .glob-field-container
209
+ .glob-field
210
+ .theia-input:not(:focus)::placeholder {
211
+ color: transparent;
212
+ }
213
+
214
+ .t-siw-search-container .resultContainer {
215
+ height: 100%;
216
+ }
217
+
218
+ .t-siw-search-container .result {
219
+ overflow: hidden;
220
+ width: 100%;
221
+ flex: 1;
222
+ }
223
+
224
+ .t-siw-search-container .result .result-head {
225
+ display: flex;
226
+ }
227
+
228
+ .t-siw-search-container .result .result-head .fa,
229
+ .t-siw-search-container .result .result-head .theia-file-icons-js {
230
+ margin: 0 3px;
231
+ }
232
+
233
+ .t-siw-search-container .result .result-head .file-name {
234
+ margin-right: 5px;
235
+ }
236
+
237
+ .t-siw-search-container .result .result-head .file-path {
238
+ font-size: var(--theia-ui-font-size0);
239
+ margin-left: 3px;
240
+ }
241
+
242
+ .t-siw-search-container .resultLine {
243
+ flex-grow: 1;
244
+ }
245
+
246
+ .t-siw-search-container .resultLine .match {
247
+ white-space: pre;
248
+ background: var(--theia-editor-findMatchHighlightBackground);
249
+ border: 1px solid var(--theia-editor-findMatchHighlightBorder);
250
+ }
251
+ .theia-hc .t-siw-search-container .resultLine .match {
252
+ border-style: dashed;
253
+ }
254
+
255
+ .t-siw-search-container .resultLine .match.strike-through {
256
+ text-decoration: line-through;
257
+ background: var(--theia-diffEditor-removedTextBackground);
258
+ border-color: var(--theia-diffEditor-removedTextBorder);
259
+ }
260
+
261
+ .t-siw-search-container .resultLine .replace-term {
262
+ background: var(--theia-diffEditor-insertedTextBackground);
263
+ border: 1px solid var(--theia-diffEditor-insertedTextBorder);
264
+ }
265
+ .theia-hc .t-siw-search-container .resultLine .replace-term {
266
+ border-style: dashed;
267
+ }
268
+
269
+ .t-siw-search-container .match-line-num {
270
+ font-size: .9em;
271
+ margin-left: 7px;
272
+ margin-right: 4px;
273
+ opacity: .7;
274
+ }
275
+
276
+ .t-siw-search-container .result-head-info {
277
+ align-items: center;
278
+ display: inline-flex;
279
+ flex-grow: 1;
280
+ }
281
+
282
+ .search-in-workspace-editor-match {
283
+ background: var(--theia-editor-findMatchHighlightBackground);
284
+ }
285
+
286
+ .current-search-in-workspace-editor-match {
287
+ background: var(--theia-editor-findMatchBackground);
288
+ }
289
+
290
+ .current-match-range-highlight {
291
+ background: var(--theia-editor-findRangeHighlightBackground);
292
+ }
293
+
294
+ .result-node-buttons {
295
+ display: none;
296
+ }
297
+
298
+ .theia-TreeNode:hover .result-node-buttons {
299
+ display: flex;
300
+ justify-content: flex-end;
301
+ align-items: center;
302
+ align-self: center;
303
+ }
304
+
305
+ .theia-TreeNode:hover .result-head .notification-count-container {
306
+ display: none;
307
+ }
308
+
309
+ .result-node-buttons > span {
310
+ width: 16px;
311
+ height: 16px;
312
+ margin-left: 2.5px;
313
+ margin-right: 0.5px;
314
+ background-repeat: no-repeat;
315
+ background-position: center;
316
+ background-size: contain;
317
+ border-radius: 5px;
318
+ }
319
+
320
+ .result-node-buttons > span:hover {
321
+ background-color: var(--theia-toolbar-hoverBackground);
322
+ }
323
+
324
+ .search-and-replace-container {
325
+ display: flex;
326
+ }
327
+
328
+ .replace-toggle {
329
+ display: flex;
330
+ align-items: center;
331
+ width: 16px;
332
+ min-width: 16px;
333
+ justify-content: center;
334
+ margin-right: 2px;
335
+ box-sizing: border-box;
336
+ }
337
+
338
+ .theia-side-panel .replace-toggle {
339
+ width: 16px;
340
+ min-width: 16px;
341
+ }
342
+
343
+ .theia-side-panel .replace-toggle .codicon {
344
+ padding: 0px;
345
+ }
346
+
347
+ .replace-toggle:hover {
348
+ background: rgba(50%, 50%, 50%, 0.2);
349
+ }
350
+
351
+ .search-and-replace-fields {
352
+ display: flex;
353
+ flex-direction: column;
354
+ flex: 1;
355
+ }
356
+
357
+ .replace-field {
358
+ display: flex;
359
+ margin-top: 5px;
360
+ }
361
+
362
+ .replace-field.hidden {
363
+ display: none;
364
+ }
365
+
366
+ .replace-all-button-container {
367
+ width: 25px;
368
+ display: flex;
369
+ align-items: start;
370
+ justify-content: center;
371
+ padding-top: 3px;
372
+ }
373
+
374
+ .result-node-buttons .replace-result {
375
+ background-image: var(--theia-icon-replace);
376
+ }
377
+ .result-node-buttons .replace-all-result {
378
+ background-image: var(--theia-icon-replace-all);
379
+ }
380
+
381
+ .replace-all-button-container .action-label.disabled {
382
+ opacity: var(--theia-mod-disabled-opacity);
383
+ background: transparent;
384
+ cursor: default;
385
+ }
386
+
387
+ .highlighted-count-container {
388
+ background-color: var(--theia-list-activeSelectionBackground);
389
+ color: var(--theia-list-activeSelectionForeground);
390
+ }
391
+
392
+ .t-siw-search-container .searchHeader .search-info {
393
+ color: var(--theia-descriptionForeground);
394
+ margin-left: 17px;
395
+ }
396
+
397
+ .theia-siw-lineNumber {
398
+ opacity: 0.7;
399
+ padding-right: 4px;
400
+ }