@theia/keymaps 1.42.1 → 1.43.1

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.
@@ -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-focusBackground);
107
+ background-color: var(--theia-list-hoverBackground);
108
+ color: var(--theia-list-hoverForeground);
107
109
  }
108
110
 
109
- .kb table tbody tr:hover .kb-action-item {
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;