Arrow keys fixed

This commit is contained in:
Alyssa X 2022-01-14 16:03:15 +00:00
parent 477f6ec0c3
commit 92e9911ddc
3 changed files with 9 additions and 3 deletions

View file

@ -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;

View file

@ -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();

View file

@ -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": {