@theia/keymaps 1.42.1 → 1.43.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/lib/browser/keybindings-widget.d.ts +40 -4
- package/lib/browser/keybindings-widget.d.ts.map +1 -1
- package/lib/browser/keybindings-widget.js +164 -16
- package/lib/browser/keybindings-widget.js.map +1 -1
- package/lib/browser/keymaps-frontend-contribution.d.ts +14 -1
- package/lib/browser/keymaps-frontend-contribution.d.ts.map +1 -1
- package/lib/browser/keymaps-frontend-contribution.js +157 -2
- package/lib/browser/keymaps-frontend-contribution.js.map +1 -1
- package/lib/browser/keymaps-service.d.ts +14 -1
- package/lib/browser/keymaps-service.d.ts.map +1 -1
- package/lib/browser/keymaps-service.js +47 -45
- package/lib/browser/keymaps-service.js.map +1 -1
- package/package.json +7 -7
- package/src/browser/keybindings-widget.tsx +174 -21
- package/src/browser/keymaps-frontend-contribution.ts +161 -3
- package/src/browser/keymaps-service.ts +47 -47
- package/src/browser/style/index.css +10 -2
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
#kb-table-container {
|
|
24
24
|
flex: 1;
|
|
25
25
|
overflow: auto;
|
|
26
|
+
user-select: none;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
.fuzzy-match {
|
|
@@ -103,10 +104,17 @@
|
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
.kb table tbody tr:hover {
|
|
106
|
-
background-color: var(--theia-list-
|
|
107
|
+
background-color: var(--theia-list-hoverBackground);
|
|
108
|
+
color: var(--theia-list-hoverForeground);
|
|
107
109
|
}
|
|
108
110
|
|
|
109
|
-
.kb table tbody tr
|
|
111
|
+
.kb table tbody tr.theia-mod-selected {
|
|
112
|
+
background-color: var(--theia-list-inactiveSelectionBackground);
|
|
113
|
+
color: var(--theia-list-inactiveSelectionForeground);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.kb table tbody tr:hover .kb-action-item,
|
|
117
|
+
.kb table tbody tr.theia-mod-selected .kb-action-item {
|
|
110
118
|
visibility: visible;
|
|
111
119
|
color: var(--theia-icon-foreground);
|
|
112
120
|
text-decoration: none;
|