@theia/toolbar 1.75.0-next.46 → 1.75.0
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 +10 -10
- package/src/browser/style/toolbar.css +12 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/toolbar",
|
|
3
|
-
"version": "1.75.0
|
|
3
|
+
"version": "1.75.0",
|
|
4
4
|
"description": "Theia - Toolbar",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theia-extension"
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"update:icons": "node ./update-icons.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@theia/core": "1.75.0
|
|
32
|
-
"@theia/editor": "1.75.0
|
|
33
|
-
"@theia/file-search": "1.75.0
|
|
34
|
-
"@theia/filesystem": "1.75.0
|
|
35
|
-
"@theia/monaco": "1.75.0
|
|
31
|
+
"@theia/core": "1.75.0",
|
|
32
|
+
"@theia/editor": "1.75.0",
|
|
33
|
+
"@theia/file-search": "1.75.0",
|
|
34
|
+
"@theia/filesystem": "1.75.0",
|
|
35
|
+
"@theia/monaco": "1.75.0",
|
|
36
36
|
"@theia/monaco-editor-core": "1.108.201",
|
|
37
|
-
"@theia/search-in-workspace": "1.75.0
|
|
38
|
-
"@theia/userstorage": "1.75.0
|
|
39
|
-
"@theia/workspace": "1.75.0
|
|
37
|
+
"@theia/search-in-workspace": "1.75.0",
|
|
38
|
+
"@theia/userstorage": "1.75.0",
|
|
39
|
+
"@theia/workspace": "1.75.0",
|
|
40
40
|
"ajv": "^6.15.0",
|
|
41
41
|
"jsonc-parser": "^3.3.1",
|
|
42
42
|
"perfect-scrollbar": "1.5.5",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "6d8e911f05f0fd9a13d76797e79b21ee3f038bc2"
|
|
55
55
|
}
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
justify-content: center;
|
|
29
29
|
position: relative;
|
|
30
30
|
border-bottom: 1px solid var(--theia-titleBar-border);
|
|
31
|
+
user-select: none;
|
|
32
|
+
-webkit-user-drag: none;
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
#main-toolbar .theia-progress-bar-container {
|
|
@@ -174,14 +176,21 @@
|
|
|
174
176
|
align-items: center;
|
|
175
177
|
}
|
|
176
178
|
|
|
177
|
-
#toolbar-icon-selector-dialog
|
|
179
|
+
#toolbar-icon-selector-dialog
|
|
180
|
+
.dialogContent
|
|
181
|
+
.icon-selector-options
|
|
182
|
+
.icon-set-selector-wrapper {
|
|
178
183
|
display: flex;
|
|
179
184
|
align-items: baseline;
|
|
180
185
|
gap: var(--theia-ui-padding);
|
|
181
186
|
}
|
|
182
187
|
|
|
183
|
-
#toolbar-icon-selector-dialog
|
|
184
|
-
|
|
188
|
+
#toolbar-icon-selector-dialog
|
|
189
|
+
.dialogContent
|
|
190
|
+
.icon-selector-options
|
|
191
|
+
.icon-set-selector-wrapper
|
|
192
|
+
.theia-select-component {
|
|
193
|
+
width: 125px;
|
|
185
194
|
}
|
|
186
195
|
|
|
187
196
|
#toolbar-icon-selector-dialog .dialogControl {
|