We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This can be done easily. First, replace the following lines (currently separate) from popup.css:
popup.css
#templates li > a .pull-right {color: #999;} #templates li > a:hover .pull-right {color: #FFF;}
With:
#templates li > a .shortcut {font-family: Consolas, "Liberation Mono", Courier, monospace; font-size: 12px;} #templates li > a:hover .shortcut {color: #FFF;}
And change the following in the buildTemplate function within background.coffee:
buildTemplate
background.coffee
if template.shortcut and store.get 'shortcuts.enabled' anchor.append $ '<span/>', class: 'pull-right muted shortcut' html: "#{ext.modifiers()}#{template.shortcut}"
This same sort of change should also be applied to the Shortcut column on the Templates tab of the options page.
The text was updated successfully, but these errors were encountered:
This has been implemented as part of #213.
Sorry, something went wrong.
neocotic
No branches or pull requests
This can be done easily. First, replace the following lines (currently separate) from
popup.css
:With:
And change the following in the
buildTemplate
function withinbackground.coffee
:This same sort of change should also be applied to the Shortcut column on the Templates tab of the options page.
The text was updated successfully, but these errors were encountered: