diff --git a/src/content.css b/src/content.css index 07ecf09..a99f87c 100644 --- a/src/content.css +++ b/src/content.css @@ -250,7 +250,7 @@ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; - width: 450px; + width: 460px; } .omni-extension .omni-item-active .omni-item-name { color: var(--text)!important; @@ -259,6 +259,10 @@ color: var(--text-3); margin-top: 5px; font-size: 14px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + width: 460px; } .omni-extension #omni-footer { height: 45px; diff --git a/src/content.js b/src/content.js index 1d6dc19..4615da4 100644 --- a/src/content.js +++ b/src/content.js @@ -56,9 +56,9 @@ $(document).ready(function(){ img = ""+action.emojiChar+"" } if (index != 0) { - $("#omni-extension #omni-list").append("
"+img+"
"+action.title+"
"+action.desc+"
"+keys+"
Select
"); + $("#omni-extension #omni-list").append("
"+img+"
"+action.title+"
"+action.url+"
"+keys+"
Select
"); } else { - $("#omni-extension #omni-list").append("
"+img+"
"+action.title+"
"+action.desc+"
"+keys+"
Select
"); + $("#omni-extension #omni-list").append("
"+img+"
"+action.title+"
"+action.url+"
"+keys+"
Select
"); } }) $(".omni-extension #omni-results").html(actions.length+" results");