textmodule: style keyboard shortcut
This commit is contained in:
parent
3752e06d9b
commit
e23a80f4cd
2 changed files with 14 additions and 1 deletions
|
@ -262,7 +262,7 @@
|
|||
|
||||
// paste some content
|
||||
Plugin.prototype.paste = function(string) {
|
||||
string = App.Utils.text2html(string) + '<br>'
|
||||
string = App.Utils.text2html(string)
|
||||
if (document.selection) { // IE
|
||||
var range = document.selection.createRange()
|
||||
range.pasteHTML(string)
|
||||
|
@ -397,6 +397,9 @@
|
|||
if (i == result.length-1) {
|
||||
element.addClass('is-active')
|
||||
}
|
||||
if (item.keywords) {
|
||||
element.append($('<kbd>').text(App.Utils.htmlEscape(item.keywords)))
|
||||
}
|
||||
this.$widget.find('ul').append(element)
|
||||
}
|
||||
|
||||
|
|
|
@ -5486,6 +5486,16 @@ footer {
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dropdown-menu kbd {
|
||||
background: none;
|
||||
color: inherit;
|
||||
padding: 2px 5px;
|
||||
margin-left: 7px;
|
||||
line-height: 1;
|
||||
vertical-align: baseline;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in a new issue