@theia/search-in-workspace 1.34.2 → 1.34.3

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.
Files changed (50) hide show
  1. package/LICENSE +641 -641
  2. package/README.md +40 -40
  3. package/lib/browser/components/search-in-workspace-input.d.ts +39 -39
  4. package/lib/browser/components/search-in-workspace-input.js +120 -120
  5. package/lib/browser/search-in-workspace-context-key-service.d.ts +23 -23
  6. package/lib/browser/search-in-workspace-context-key-service.js +90 -90
  7. package/lib/browser/search-in-workspace-factory.d.ts +10 -10
  8. package/lib/browser/search-in-workspace-factory.js +68 -68
  9. package/lib/browser/search-in-workspace-frontend-contribution.d.ts +53 -53
  10. package/lib/browser/search-in-workspace-frontend-contribution.js +410 -410
  11. package/lib/browser/search-in-workspace-frontend-module.d.ts +6 -6
  12. package/lib/browser/search-in-workspace-frontend-module.js +70 -70
  13. package/lib/browser/search-in-workspace-label-provider.d.ts +9 -9
  14. package/lib/browser/search-in-workspace-label-provider.js +57 -57
  15. package/lib/browser/search-in-workspace-preferences.d.ts +17 -17
  16. package/lib/browser/search-in-workspace-preferences.js +82 -82
  17. package/lib/browser/search-in-workspace-result-tree-widget.d.ts +253 -253
  18. package/lib/browser/search-in-workspace-result-tree-widget.js +1072 -1072
  19. package/lib/browser/search-in-workspace-service.d.ts +35 -35
  20. package/lib/browser/search-in-workspace-service.js +158 -158
  21. package/lib/browser/search-in-workspace-widget.d.ts +121 -121
  22. package/lib/browser/search-in-workspace-widget.js +602 -602
  23. package/lib/browser/search-layout-migrations.d.ts +5 -5
  24. package/lib/browser/search-layout-migrations.js +64 -64
  25. package/lib/common/search-in-workspace-interface.d.ts +112 -112
  26. package/lib/common/search-in-workspace-interface.js +35 -35
  27. package/lib/node/ripgrep-search-in-workspace-server.d.ts +94 -94
  28. package/lib/node/ripgrep-search-in-workspace-server.js +423 -423
  29. package/lib/node/ripgrep-search-in-workspace-server.slow-spec.d.ts +1 -1
  30. package/lib/node/ripgrep-search-in-workspace-server.slow-spec.js +899 -899
  31. package/lib/node/search-in-workspace-backend-module.d.ts +3 -3
  32. package/lib/node/search-in-workspace-backend-module.js +32 -32
  33. package/package.json +9 -9
  34. package/src/browser/components/search-in-workspace-input.tsx +139 -139
  35. package/src/browser/search-in-workspace-context-key-service.ts +93 -93
  36. package/src/browser/search-in-workspace-factory.ts +59 -59
  37. package/src/browser/search-in-workspace-frontend-contribution.ts +402 -402
  38. package/src/browser/search-in-workspace-frontend-module.ts +82 -82
  39. package/src/browser/search-in-workspace-label-provider.ts +48 -48
  40. package/src/browser/search-in-workspace-preferences.ts +91 -91
  41. package/src/browser/search-in-workspace-result-tree-widget.tsx +1225 -1225
  42. package/src/browser/search-in-workspace-service.ts +152 -152
  43. package/src/browser/search-in-workspace-widget.tsx +711 -711
  44. package/src/browser/search-layout-migrations.ts +53 -53
  45. package/src/browser/styles/index.css +367 -367
  46. package/src/browser/styles/search.svg +6 -6
  47. package/src/common/search-in-workspace-interface.ts +149 -149
  48. package/src/node/ripgrep-search-in-workspace-server.slow-spec.ts +1073 -1073
  49. package/src/node/ripgrep-search-in-workspace-server.ts +482 -482
  50. package/src/node/search-in-workspace-backend-module.ts +33 -33
@@ -1,367 +1,367 @@
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 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: 5px ;
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
- flex: 1;
40
- line-height: var(--theia-content-line-height);
41
- padding: 3px 0 3px 4px;
42
- }
43
-
44
- .t-siw-search-container #search-input-field:focus {
45
- border: none;
46
- outline: none;
47
- }
48
-
49
- .t-siw-search-container #search-input-field {
50
- background: none;
51
- border: none;
52
- }
53
-
54
- .t-siw-search-container .searchHeader {
55
- width: 100%;
56
- margin-bottom: 10px;
57
- }
58
-
59
- .t-siw-search-container .searchHeader .controls.button-container {
60
- height: var(--theia-content-line-height);
61
- margin-bottom: 5px;
62
- }
63
-
64
- .t-siw-search-container .searchHeader .search-field-container {
65
- background: var(--theia-input-background);
66
- border-style: solid;
67
- border-width: var(--theia-border-width);
68
- border-color: var(--theia-input-background);
69
- }
70
-
71
- .t-siw-search-container .searchHeader .search-field-container.focused {
72
- border-color: var(--theia-focusBorder);
73
- }
74
-
75
- .t-siw-search-container .searchHeader .search-field {
76
- display: flex;
77
- align-items: center;
78
- }
79
-
80
- .t-siw-search-container .searchHeader .search-field:focus {
81
- border: none;
82
- outline: none;
83
- }
84
-
85
- .t-siw-search-container .searchHeader .search-field .option {
86
- opacity: 0.7;
87
- cursor: pointer;
88
- }
89
-
90
- .t-siw-search-container .searchHeader .search-field .option.enabled {
91
- border: var(--theia-border-width) var(--theia-inputOption-activeBorder) solid;
92
- background-color: var(--theia-inputOption-activeBackground);
93
- }
94
-
95
- .t-siw-search-container .searchHeader .search-field .option:hover {
96
- opacity: 1;
97
- }
98
-
99
- .t-siw-search-container .searchHeader .search-field .option-buttons {
100
- height: 23px;
101
- display: flex;
102
- align-items: center;
103
- background-color: none;
104
- }
105
-
106
- .t-siw-search-container .searchHeader .search-field-container.tooManyResults {
107
- border-style: solid;
108
- border-width: var(--theia-border-width);
109
- margin: -1px;
110
- border-color: var(--theia-inputValidation-warningBorder);
111
- }
112
-
113
- .t-siw-search-container .searchHeader .search-field-container .search-notification {
114
- height: 0;
115
- display: none;
116
- width: 100%;
117
- position: relative;
118
- }
119
-
120
- .t-siw-search-container .searchHeader .search-field-container.focused .search-notification.show {
121
- display: block;
122
- }
123
-
124
- .t-siw-search-container .searchHeader .search-notification div{
125
- background-color: var(--theia-inputValidation-warningBackground);
126
- width: calc(100% + 2px);
127
- margin-left: -1px;
128
- color: var(--theia-inputValidation-warningForeground);
129
- z-index: 1000;
130
- position: absolute;
131
- border: 1px solid var(--theia-inputValidation-warningBorder);
132
- box-sizing: border-box;
133
- padding: 3px;
134
- }
135
-
136
- .t-siw-search-container .searchHeader .button-container {
137
- text-align: center;
138
- display: flex;
139
- justify-content: center;
140
- }
141
-
142
- .t-siw-search-container .searchHeader .search-field .option,
143
- .t-siw-search-container .searchHeader .button-container .btn {
144
- width: 21px;
145
- height: 21px;
146
- margin: 0 1px;
147
- display: inline-block;
148
- box-sizing: border-box;
149
- align-items: center;
150
- user-select: none;
151
- background-repeat: no-repeat;
152
- background-position: center;
153
- border: var(--theia-border-width) solid transparent;
154
- }
155
-
156
- .t-siw-search-container .searchHeader .search-field .fa.option {
157
- display: flex;
158
- align-items: center;
159
- justify-content: center;
160
- }
161
-
162
- .t-siw-search-container .searchHeader .search-details {
163
- position: relative;
164
- padding-top: 5px;
165
- }
166
-
167
- .t-siw-search-container .searchHeader .search-details .button-container {
168
- position: absolute;
169
- width: 25px;
170
- top:0;
171
- right:0;
172
- cursor: pointer;
173
- }
174
-
175
- .t-siw-search-container .searchHeader .glob-field-container.hidden {
176
- display: none;
177
- }
178
-
179
- .t-siw-search-container .searchHeader .glob-field-container .glob-field {
180
- margin-bottom: 8px;
181
- margin-left: 18px;
182
- display: flex;
183
- flex-direction: column;
184
- }
185
-
186
- .t-siw-search-container .searchHeader .glob-field-container .glob-field .label {
187
- margin-bottom: 3px;
188
- user-select: none;
189
- font-size: var(--theia-ui-font-size0);
190
- }
191
-
192
- .t-siw-search-container .resultContainer {
193
- height: 100%;
194
- margin-left: 13px;
195
- }
196
-
197
- .t-siw-search-container .result {
198
- overflow: hidden;
199
- width: 100%;
200
- flex: 1;
201
- }
202
-
203
- .t-siw-search-container .result .result-head {
204
- display:flex;
205
- }
206
-
207
- .t-siw-search-container .result .result-head .fa,
208
- .t-siw-search-container .result .result-head .theia-file-icons-js {
209
- margin: 0 3px;
210
- }
211
-
212
- .t-siw-search-container .result .result-head .file-name {
213
- margin-right: 5px;
214
- }
215
-
216
- .t-siw-search-container .result .result-head .file-path {
217
- font-size: var(--theia-ui-font-size0);
218
- margin-left: 3px;
219
- }
220
-
221
- .t-siw-search-container .resultLine .match {
222
- line-height: normal;
223
- white-space: pre;
224
- background: var(--theia-editor-findMatchHighlightBackground);
225
- border: 1px solid var(--theia-editor-findMatchHighlightBorder);
226
- }
227
- .theia-hc .t-siw-search-container .resultLine .match {
228
- border-style: dashed;
229
- }
230
-
231
- .t-siw-search-container .resultLine .match.strike-through {
232
- text-decoration: line-through;
233
- background: var(--theia-diffEditor-removedTextBackground);
234
- border-color: var(--theia-diffEditor-removedTextBorder);
235
- }
236
-
237
- .t-siw-search-container .resultLine .replace-term {
238
- background: var(--theia-diffEditor-insertedTextBackground);
239
- border: 1px solid var(--theia-diffEditor-insertedTextBorder);
240
- }
241
- .theia-hc
242
- .t-siw-search-container .resultLine .replace-term {
243
- border-style: dashed;
244
- }
245
-
246
- .t-siw-search-container .noWrapInfo {
247
- width: 100%;
248
- }
249
-
250
- .t-siw-search-container .result-head-info {
251
- display: inline-flex;
252
- align-items: center;
253
- }
254
-
255
- .search-in-workspace-editor-match {
256
- background: var(--theia-editor-findMatchHighlightBackground);
257
- }
258
-
259
- .current-search-in-workspace-editor-match {
260
- background: var(--theia-editor-findMatchBackground)
261
- }
262
-
263
- .current-match-range-highlight {
264
- background: var(--theia-editor-findRangeHighlightBackground);
265
- }
266
-
267
- .result-node-buttons {
268
- display: none;
269
- }
270
-
271
- .theia-TreeNode:hover .result-node-buttons {
272
- display: flex;
273
- justify-content: flex-end;
274
- align-items: center;
275
- align-self: center;
276
- }
277
-
278
- .theia-TreeNode:hover .result-head .notification-count-container {
279
- display: none;
280
- }
281
-
282
- .result-node-buttons > span {
283
- width: 15px;
284
- height: 15px;
285
- margin-left: 2.5px;
286
- margin-right: 0.5px;
287
- background-repeat: no-repeat;
288
- background-position: center;
289
- background-size: contain;
290
- }
291
-
292
- .search-and-replace-container {
293
- display: flex;
294
- }
295
-
296
- .replace-toggle {
297
- display: flex;
298
- align-items: center;
299
- width: 16px;
300
- min-width: 16px;
301
- justify-content: center;
302
- margin-right: 2px;
303
- box-sizing: border-box;
304
- }
305
-
306
- .theia-side-panel .replace-toggle {
307
- width: 16px;
308
- min-width: 16px;
309
- }
310
-
311
- .theia-side-panel .replace-toggle .codicon {
312
- padding: 0px;
313
- }
314
-
315
- .replace-toggle:hover {
316
- background: rgba(50%, 50%, 50%, 0.2);
317
- }
318
-
319
- .search-and-replace-fields {
320
- display: flex;
321
- flex-direction: column;
322
- flex: 1;
323
- }
324
-
325
- .replace-field {
326
- display: flex;
327
- margin-top: 5px;
328
- }
329
-
330
- .replace-field.hidden {
331
- display: none;
332
- }
333
-
334
- .replace-all-button-container {
335
- width: 25px;
336
- display: flex;
337
- align-items: center;
338
- justify-content: center;
339
- }
340
-
341
- .result-node-buttons .replace-result {
342
- background-image: var(--theia-icon-replace);
343
- }
344
- .result-node-buttons .replace-all-result {
345
- background-image: var(--theia-icon-replace-all);
346
- }
347
-
348
- .replace-all-button-container .action-label.disabled {
349
- opacity: var(--theia-mod-disabled-opacity);
350
- background: transparent;
351
- cursor: default;
352
- }
353
-
354
- .highlighted-count-container {
355
- background-color: var(--theia-list-activeSelectionBackground);
356
- color: var(--theia-list-activeSelectionForeground);
357
- }
358
-
359
- .t-siw-search-container .searchHeader .search-info {
360
- color: var(--theia-descriptionForeground);
361
- margin-left: 17px;
362
- }
363
-
364
- .theia-siw-lineNumber {
365
- opacity: .7;
366
- padding-right: 4px;
367
- }
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 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: 5px ;
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
+ flex: 1;
40
+ line-height: var(--theia-content-line-height);
41
+ padding: 3px 0 3px 4px;
42
+ }
43
+
44
+ .t-siw-search-container #search-input-field:focus {
45
+ border: none;
46
+ outline: none;
47
+ }
48
+
49
+ .t-siw-search-container #search-input-field {
50
+ background: none;
51
+ border: none;
52
+ }
53
+
54
+ .t-siw-search-container .searchHeader {
55
+ width: 100%;
56
+ margin-bottom: 10px;
57
+ }
58
+
59
+ .t-siw-search-container .searchHeader .controls.button-container {
60
+ height: var(--theia-content-line-height);
61
+ margin-bottom: 5px;
62
+ }
63
+
64
+ .t-siw-search-container .searchHeader .search-field-container {
65
+ background: var(--theia-input-background);
66
+ border-style: solid;
67
+ border-width: var(--theia-border-width);
68
+ border-color: var(--theia-input-background);
69
+ }
70
+
71
+ .t-siw-search-container .searchHeader .search-field-container.focused {
72
+ border-color: var(--theia-focusBorder);
73
+ }
74
+
75
+ .t-siw-search-container .searchHeader .search-field {
76
+ display: flex;
77
+ align-items: center;
78
+ }
79
+
80
+ .t-siw-search-container .searchHeader .search-field:focus {
81
+ border: none;
82
+ outline: none;
83
+ }
84
+
85
+ .t-siw-search-container .searchHeader .search-field .option {
86
+ opacity: 0.7;
87
+ cursor: pointer;
88
+ }
89
+
90
+ .t-siw-search-container .searchHeader .search-field .option.enabled {
91
+ border: var(--theia-border-width) var(--theia-inputOption-activeBorder) solid;
92
+ background-color: var(--theia-inputOption-activeBackground);
93
+ }
94
+
95
+ .t-siw-search-container .searchHeader .search-field .option:hover {
96
+ opacity: 1;
97
+ }
98
+
99
+ .t-siw-search-container .searchHeader .search-field .option-buttons {
100
+ height: 23px;
101
+ display: flex;
102
+ align-items: center;
103
+ background-color: none;
104
+ }
105
+
106
+ .t-siw-search-container .searchHeader .search-field-container.tooManyResults {
107
+ border-style: solid;
108
+ border-width: var(--theia-border-width);
109
+ margin: -1px;
110
+ border-color: var(--theia-inputValidation-warningBorder);
111
+ }
112
+
113
+ .t-siw-search-container .searchHeader .search-field-container .search-notification {
114
+ height: 0;
115
+ display: none;
116
+ width: 100%;
117
+ position: relative;
118
+ }
119
+
120
+ .t-siw-search-container .searchHeader .search-field-container.focused .search-notification.show {
121
+ display: block;
122
+ }
123
+
124
+ .t-siw-search-container .searchHeader .search-notification div{
125
+ background-color: var(--theia-inputValidation-warningBackground);
126
+ width: calc(100% + 2px);
127
+ margin-left: -1px;
128
+ color: var(--theia-inputValidation-warningForeground);
129
+ z-index: 1000;
130
+ position: absolute;
131
+ border: 1px solid var(--theia-inputValidation-warningBorder);
132
+ box-sizing: border-box;
133
+ padding: 3px;
134
+ }
135
+
136
+ .t-siw-search-container .searchHeader .button-container {
137
+ text-align: center;
138
+ display: flex;
139
+ justify-content: center;
140
+ }
141
+
142
+ .t-siw-search-container .searchHeader .search-field .option,
143
+ .t-siw-search-container .searchHeader .button-container .btn {
144
+ width: 21px;
145
+ height: 21px;
146
+ margin: 0 1px;
147
+ display: inline-block;
148
+ box-sizing: border-box;
149
+ align-items: center;
150
+ user-select: none;
151
+ background-repeat: no-repeat;
152
+ background-position: center;
153
+ border: var(--theia-border-width) solid transparent;
154
+ }
155
+
156
+ .t-siw-search-container .searchHeader .search-field .fa.option {
157
+ display: flex;
158
+ align-items: center;
159
+ justify-content: center;
160
+ }
161
+
162
+ .t-siw-search-container .searchHeader .search-details {
163
+ position: relative;
164
+ padding-top: 5px;
165
+ }
166
+
167
+ .t-siw-search-container .searchHeader .search-details .button-container {
168
+ position: absolute;
169
+ width: 25px;
170
+ top:0;
171
+ right:0;
172
+ cursor: pointer;
173
+ }
174
+
175
+ .t-siw-search-container .searchHeader .glob-field-container.hidden {
176
+ display: none;
177
+ }
178
+
179
+ .t-siw-search-container .searchHeader .glob-field-container .glob-field {
180
+ margin-bottom: 8px;
181
+ margin-left: 18px;
182
+ display: flex;
183
+ flex-direction: column;
184
+ }
185
+
186
+ .t-siw-search-container .searchHeader .glob-field-container .glob-field .label {
187
+ margin-bottom: 3px;
188
+ user-select: none;
189
+ font-size: var(--theia-ui-font-size0);
190
+ }
191
+
192
+ .t-siw-search-container .resultContainer {
193
+ height: 100%;
194
+ margin-left: 13px;
195
+ }
196
+
197
+ .t-siw-search-container .result {
198
+ overflow: hidden;
199
+ width: 100%;
200
+ flex: 1;
201
+ }
202
+
203
+ .t-siw-search-container .result .result-head {
204
+ display:flex;
205
+ }
206
+
207
+ .t-siw-search-container .result .result-head .fa,
208
+ .t-siw-search-container .result .result-head .theia-file-icons-js {
209
+ margin: 0 3px;
210
+ }
211
+
212
+ .t-siw-search-container .result .result-head .file-name {
213
+ margin-right: 5px;
214
+ }
215
+
216
+ .t-siw-search-container .result .result-head .file-path {
217
+ font-size: var(--theia-ui-font-size0);
218
+ margin-left: 3px;
219
+ }
220
+
221
+ .t-siw-search-container .resultLine .match {
222
+ line-height: normal;
223
+ white-space: pre;
224
+ background: var(--theia-editor-findMatchHighlightBackground);
225
+ border: 1px solid var(--theia-editor-findMatchHighlightBorder);
226
+ }
227
+ .theia-hc .t-siw-search-container .resultLine .match {
228
+ border-style: dashed;
229
+ }
230
+
231
+ .t-siw-search-container .resultLine .match.strike-through {
232
+ text-decoration: line-through;
233
+ background: var(--theia-diffEditor-removedTextBackground);
234
+ border-color: var(--theia-diffEditor-removedTextBorder);
235
+ }
236
+
237
+ .t-siw-search-container .resultLine .replace-term {
238
+ background: var(--theia-diffEditor-insertedTextBackground);
239
+ border: 1px solid var(--theia-diffEditor-insertedTextBorder);
240
+ }
241
+ .theia-hc
242
+ .t-siw-search-container .resultLine .replace-term {
243
+ border-style: dashed;
244
+ }
245
+
246
+ .t-siw-search-container .noWrapInfo {
247
+ width: 100%;
248
+ }
249
+
250
+ .t-siw-search-container .result-head-info {
251
+ display: inline-flex;
252
+ align-items: center;
253
+ }
254
+
255
+ .search-in-workspace-editor-match {
256
+ background: var(--theia-editor-findMatchHighlightBackground);
257
+ }
258
+
259
+ .current-search-in-workspace-editor-match {
260
+ background: var(--theia-editor-findMatchBackground)
261
+ }
262
+
263
+ .current-match-range-highlight {
264
+ background: var(--theia-editor-findRangeHighlightBackground);
265
+ }
266
+
267
+ .result-node-buttons {
268
+ display: none;
269
+ }
270
+
271
+ .theia-TreeNode:hover .result-node-buttons {
272
+ display: flex;
273
+ justify-content: flex-end;
274
+ align-items: center;
275
+ align-self: center;
276
+ }
277
+
278
+ .theia-TreeNode:hover .result-head .notification-count-container {
279
+ display: none;
280
+ }
281
+
282
+ .result-node-buttons > span {
283
+ width: 15px;
284
+ height: 15px;
285
+ margin-left: 2.5px;
286
+ margin-right: 0.5px;
287
+ background-repeat: no-repeat;
288
+ background-position: center;
289
+ background-size: contain;
290
+ }
291
+
292
+ .search-and-replace-container {
293
+ display: flex;
294
+ }
295
+
296
+ .replace-toggle {
297
+ display: flex;
298
+ align-items: center;
299
+ width: 16px;
300
+ min-width: 16px;
301
+ justify-content: center;
302
+ margin-right: 2px;
303
+ box-sizing: border-box;
304
+ }
305
+
306
+ .theia-side-panel .replace-toggle {
307
+ width: 16px;
308
+ min-width: 16px;
309
+ }
310
+
311
+ .theia-side-panel .replace-toggle .codicon {
312
+ padding: 0px;
313
+ }
314
+
315
+ .replace-toggle:hover {
316
+ background: rgba(50%, 50%, 50%, 0.2);
317
+ }
318
+
319
+ .search-and-replace-fields {
320
+ display: flex;
321
+ flex-direction: column;
322
+ flex: 1;
323
+ }
324
+
325
+ .replace-field {
326
+ display: flex;
327
+ margin-top: 5px;
328
+ }
329
+
330
+ .replace-field.hidden {
331
+ display: none;
332
+ }
333
+
334
+ .replace-all-button-container {
335
+ width: 25px;
336
+ display: flex;
337
+ align-items: center;
338
+ justify-content: center;
339
+ }
340
+
341
+ .result-node-buttons .replace-result {
342
+ background-image: var(--theia-icon-replace);
343
+ }
344
+ .result-node-buttons .replace-all-result {
345
+ background-image: var(--theia-icon-replace-all);
346
+ }
347
+
348
+ .replace-all-button-container .action-label.disabled {
349
+ opacity: var(--theia-mod-disabled-opacity);
350
+ background: transparent;
351
+ cursor: default;
352
+ }
353
+
354
+ .highlighted-count-container {
355
+ background-color: var(--theia-list-activeSelectionBackground);
356
+ color: var(--theia-list-activeSelectionForeground);
357
+ }
358
+
359
+ .t-siw-search-container .searchHeader .search-info {
360
+ color: var(--theia-descriptionForeground);
361
+ margin-left: 17px;
362
+ }
363
+
364
+ .theia-siw-lineNumber {
365
+ opacity: .7;
366
+ padding-right: 4px;
367
+ }