@theia/search-in-workspace 1.63.2 → 1.64.0-next.17

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.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@theia/search-in-workspace",
3
- "version": "1.63.2",
3
+ "version": "1.64.0-next.17+58507bbed",
4
4
  "description": "Theia - Search in workspace",
5
5
  "dependencies": {
6
- "@theia/core": "1.63.2",
7
- "@theia/editor": "1.63.2",
8
- "@theia/filesystem": "1.63.2",
9
- "@theia/navigator": "1.63.2",
10
- "@theia/process": "1.63.2",
11
- "@theia/workspace": "1.63.2",
6
+ "@theia/core": "1.64.0-next.17+58507bbed",
7
+ "@theia/editor": "1.64.0-next.17+58507bbed",
8
+ "@theia/filesystem": "1.64.0-next.17+58507bbed",
9
+ "@theia/navigator": "1.64.0-next.17+58507bbed",
10
+ "@theia/process": "1.64.0-next.17+58507bbed",
11
+ "@theia/workspace": "1.64.0-next.17+58507bbed",
12
12
  "@vscode/ripgrep": "^1.14.2",
13
13
  "minimatch": "^5.1.0",
14
14
  "react-textarea-autosize": "^8.5.5",
@@ -48,7 +48,7 @@
48
48
  "watch": "theiaext watch"
49
49
  },
50
50
  "devDependencies": {
51
- "@theia/ext-scripts": "1.63.2"
51
+ "@theia/ext-scripts": "1.63.0"
52
52
  },
53
- "gitHead": "dc03f4a5e7cd301c64bcb1cfd8fbacc7f83255d1"
53
+ "gitHead": "58507bbedb95724735981f44f034e7036fa2f19e"
54
54
  }
@@ -25,7 +25,6 @@
25
25
  }
26
26
 
27
27
  .t-siw-search-container {
28
- padding: 0px 1px;
29
28
  display: flex;
30
29
  flex-direction: column;
31
30
  height: 100%;
@@ -44,7 +43,7 @@
44
43
  line-height: var(--theia-content-line-height);
45
44
  max-height: calc(2 * 3px + 7 * var(--theia-content-line-height));
46
45
  min-width: 16px;
47
- padding: 3px 0 3px 4px;
46
+ min-height: 26px;
48
47
  resize: none;
49
48
  width: 100%;
50
49
  }
@@ -57,10 +56,18 @@
57
56
  .t-siw-search-container #search-input-field {
58
57
  background: none;
59
58
  border: none;
59
+ padding-block: 2px;
60
60
  }
61
61
 
62
62
  .t-siw-search-container .searchHeader {
63
- padding: 5px 5px 15px 2px;
63
+ padding: var(--theia-ui-padding)
64
+ max(var(--theia-scrollbar-width), var(--theia-ui-padding))
65
+ calc(var(--theia-ui-padding) * 2)
66
+ 0;
67
+ }
68
+
69
+ #theia-main-content-panel .t-siw-search-container .searchHeader {
70
+ padding-top: 10px;
64
71
  }
65
72
 
66
73
  .t-siw-search-container .searchHeader .controls.button-container {
@@ -107,12 +114,11 @@
107
114
  }
108
115
 
109
116
  .t-siw-search-container .searchHeader .search-field .option-buttons {
110
- height: 23px;
111
- display: flex;
112
- align-items: center;
113
- align-self: flex-start;
114
- background-color: none;
115
- margin: 2px;
117
+ display: flex;
118
+ align-items: center;
119
+ align-self: flex-start;
120
+ background-color: unset;
121
+ margin: auto 2px;
116
122
  }
117
123
 
118
124
  .t-siw-search-container .searchHeader .search-field-container.tooManyResults {
@@ -122,9 +128,9 @@
122
128
  }
123
129
 
124
130
  .t-siw-search-container
125
- .searchHeader
126
- .search-field-container
127
- .search-notification {
131
+ .searchHeader
132
+ .search-field-container
133
+ .search-notification {
128
134
  height: 0;
129
135
  display: none;
130
136
  width: 100%;
@@ -132,9 +138,9 @@
132
138
  }
133
139
 
134
140
  .t-siw-search-container
135
- .searchHeader
136
- .search-field-container.focused
137
- .search-notification.show {
141
+ .searchHeader
142
+ .search-field-container.focused
143
+ .search-notification.show {
138
144
  display: block;
139
145
  }
140
146
 
@@ -178,7 +184,7 @@
178
184
 
179
185
  .t-siw-search-container .searchHeader .search-details {
180
186
  position: relative;
181
- padding-top: 5px;
187
+ margin-top: var(--theia-ui-padding);
182
188
  }
183
189
 
184
190
  .t-siw-search-container .searchHeader .search-details .button-container {
@@ -194,14 +200,14 @@
194
200
  }
195
201
 
196
202
  .t-siw-search-container .searchHeader .glob-field-container .glob-field {
197
- margin-bottom: 8px;
198
- margin-left: 18px;
203
+ margin-bottom: var(--theia-ui-padding);
204
+ margin-left: calc(var(--theia-ui-padding) * 3);
199
205
  display: flex;
200
206
  flex-direction: column;
201
207
  }
202
208
 
203
209
  .t-siw-search-container .searchHeader .glob-field-container .glob-field .label {
204
- margin-bottom: 3px;
210
+ margin-bottom: 4px;
205
211
  user-select: none;
206
212
  font-size: var(--theia-ui-font-size0);
207
213
  }
@@ -310,13 +316,8 @@
310
316
  }
311
317
 
312
318
  .result-node-buttons > span {
313
- width: 16px;
314
- height: 16px;
315
- margin-left: 2.5px;
316
- margin-right: 0.5px;
317
- background-repeat: no-repeat;
318
- background-position: center;
319
- background-size: contain;
319
+ padding: 2px;
320
+ margin-left: var(--theia-ui-padding);
320
321
  border-radius: 5px;
321
322
  }
322
323
 
@@ -331,18 +332,14 @@
331
332
  .replace-toggle {
332
333
  display: flex;
333
334
  align-items: center;
334
- width: 16px;
335
- min-width: 16px;
335
+ width: 14px;
336
+ min-width: 14px;
336
337
  justify-content: center;
338
+ margin-left: 2px;
337
339
  margin-right: 2px;
338
340
  box-sizing: border-box;
339
341
  }
340
342
 
341
- .theia-side-panel .replace-toggle {
342
- width: 16px;
343
- min-width: 16px;
344
- }
345
-
346
343
  .theia-side-panel .replace-toggle .codicon {
347
344
  padding: 0px;
348
345
  }
@@ -359,7 +356,8 @@
359
356
 
360
357
  .replace-field {
361
358
  display: flex;
362
- margin-top: 5px;
359
+ margin-top: var(--theia-ui-padding);
360
+ gap: var(--theia-ui-padding);
363
361
  }
364
362
 
365
363
  .replace-field.hidden {
@@ -367,11 +365,9 @@
367
365
  }
368
366
 
369
367
  .replace-all-button-container {
370
- width: 25px;
371
368
  display: flex;
372
- align-items: start;
369
+ align-items: center;
373
370
  justify-content: center;
374
- padding-top: 3px;
375
371
  }
376
372
 
377
373
  .result-node-buttons .replace-result {
@@ -394,7 +390,8 @@
394
390
 
395
391
  .t-siw-search-container .searchHeader .search-info {
396
392
  color: var(--theia-descriptionForeground);
397
- margin-left: 17px;
393
+ margin-left: 18px;
394
+ margin-top: 10px;
398
395
  }
399
396
 
400
397
  .theia-siw-lineNumber {