mirror of
https://github.com/alyssaxuu/omni.git
synced 2026-03-11 08:54:35 +00:00
Arrow keys fixed
This commit is contained in:
parent
477f6ec0c3
commit
92e9911ddc
3 changed files with 9 additions and 3 deletions
|
|
@ -53,6 +53,9 @@
|
|||
font-weight: 700;
|
||||
src: url('chrome-extension://__MSG_@@extension_id__/assets/Inter-Bold.ttf');
|
||||
}
|
||||
.omni-extension * {
|
||||
display: block;
|
||||
}
|
||||
.omni-extension .omni-item-details * {
|
||||
line-height: normal;
|
||||
}
|
||||
|
|
@ -133,7 +136,7 @@
|
|||
margin-left: 3px;
|
||||
}
|
||||
.omni-extension .omni-shortcut {
|
||||
display: inline-block;
|
||||
display: inline-block!important;
|
||||
font-size: 13px;
|
||||
border-radius: 5px;
|
||||
background-color: var(--shortcut);
|
||||
|
|
@ -238,7 +241,7 @@
|
|||
font-size: 18px;
|
||||
}
|
||||
.omni-extension .omni-item-details {
|
||||
display: inline-block;
|
||||
display: inline-block!important;
|
||||
margin-left: 10px;
|
||||
vertical-align: middle;
|
||||
margin-top: 10px;
|
||||
|
|
|
|||
|
|
@ -117,6 +117,9 @@ $(document).ready(function(){
|
|||
|
||||
// Search for an action in the omni
|
||||
function search(e) {
|
||||
if (e.keyCode == 37 || e.keyCode == 38 || e.keyCode == 39 || e.keyCode == 40 || e.keyCode == 13 || e.keyCode == 37) {
|
||||
return;
|
||||
}
|
||||
var value = $(this).val().toLowerCase();
|
||||
checkShortHand(e, value);
|
||||
value = $(this).val().toLowerCase();
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Omni",
|
||||
"description": "Supercharge Chrome with commands, shortcuts, and more",
|
||||
"offline_enabled": true,
|
||||
"version": "1.2.5",
|
||||
"version": "1.2.7",
|
||||
"manifest_version": 3,
|
||||
"action": {
|
||||
"icons": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue