@theia/scm 1.64.0-next.0 → 1.64.0-next.28

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,12 +1,12 @@
1
1
  {
2
2
  "name": "@theia/scm",
3
- "version": "1.64.0-next.0+0dcdcd4d3",
3
+ "version": "1.64.0-next.28+c0fda4c47",
4
4
  "description": "Theia - Source control Extension",
5
5
  "dependencies": {
6
- "@theia/core": "1.64.0-next.0+0dcdcd4d3",
7
- "@theia/editor": "1.64.0-next.0+0dcdcd4d3",
8
- "@theia/filesystem": "1.64.0-next.0+0dcdcd4d3",
9
- "@theia/monaco": "1.64.0-next.0+0dcdcd4d3",
6
+ "@theia/core": "1.64.0-next.28+c0fda4c47",
7
+ "@theia/editor": "1.64.0-next.28+c0fda4c47",
8
+ "@theia/filesystem": "1.64.0-next.28+c0fda4c47",
9
+ "@theia/monaco": "1.64.0-next.28+c0fda4c47",
10
10
  "@theia/monaco-editor-core": "1.96.302",
11
11
  "@types/diff": "^5.2.1",
12
12
  "diff": "^5.2.0",
@@ -54,5 +54,5 @@
54
54
  "nyc": {
55
55
  "extends": "../../configs/nyc.json"
56
56
  },
57
- "gitHead": "0dcdcd4d398f4106746d0f701205abdb668383f3"
57
+ "gitHead": "c0fda4c4706fcd4ec1616c8e2f24673352a707d1"
58
58
  }
@@ -19,7 +19,10 @@
19
19
  font-size: var(--theia-ui-font-size1);
20
20
  max-height: calc(100% - var(--theia-border-width));
21
21
  position: relative;
22
- padding: 5px 5px 0px 19px;
22
+ padding: var(--theia-ui-padding)
23
+ max(var(--theia-ui-padding), var(--theia-scrollbar-width))
24
+ var(--theia-ui-padding)
25
+ calc(var(--theia-ui-padding) * 3);
23
26
  }
24
27
 
25
28
  .theia-scm {
@@ -86,7 +89,6 @@
86
89
  .theia-scm-input-message-container {
87
90
  display: flex;
88
91
  flex-direction: column;
89
- margin: 0px 0px 7px 0px;
90
92
  max-height: 400px;
91
93
  }
92
94
 
@@ -94,8 +96,6 @@
94
96
  line-height: var(--theia-content-line-height);
95
97
  resize: none;
96
98
  box-sizing: border-box;
97
- min-height: 32px;
98
- padding: 4px;
99
99
  border: none;
100
100
  }
101
101
 
@@ -212,24 +212,15 @@
212
212
  }
213
213
 
214
214
  .theia-scm .scmItem .status {
215
- width: 16px;
216
215
  text-align: center;
217
- padding-top: 2px;
218
- padding-bottom: 2px;
219
216
  font-size: var(--theia-ui-font-size0);
220
- }
221
-
222
- .theia-scm .decoration-icon {
223
- margin: 2px 0px;
224
- }
225
-
226
- .scm-change-count {
227
- float: right;
217
+ margin-right: var(--theia-ui-padding);
228
218
  }
229
219
 
230
220
  .scm-theia-header {
231
221
  display: flex;
232
222
  align-items: center;
223
+ padding-right: var(--theia-ui-padding);
233
224
  }
234
225
 
235
226
  .scm-theia-header:hover {
@@ -245,7 +236,9 @@
245
236
 
246
237
  .theia-scm-inline-actions {
247
238
  display: flex;
248
- margin: 0 3px;
239
+ align-items: center;
240
+ gap: 2px;
241
+ margin-right: var(--theia-ui-padding);
249
242
  }
250
243
 
251
244
  .theia-scm-inline-actions a {
@@ -253,11 +246,13 @@
253
246
  }
254
247
 
255
248
  .theia-scm-inline-action {
256
- font-size: var(--theia-ui-font-size1);
257
- margin: 0 2px;
258
- cursor: pointer;
259
249
  display: flex;
260
250
  align-items: center;
251
+ min-width: var(--theia-icon-size);
252
+ height: var(--theia-icon-size);
253
+ line-height: var(--theia-icon-size);
254
+ font-size: var(--theia-ui-font-size1);
255
+ cursor: pointer;
261
256
  }
262
257
 
263
258
  .theia-scm-inline-action .open-file {