aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
authorStephen Blott2016-04-23 06:53:55 +0100
committerStephen Blott2016-04-23 07:16:33 +0100
commit98ea279485fc456bbe4349559f9c08a24e2c4214 (patch)
treefb50db6f3c2e27b103a1ce9bdcb15c397011ec6a /content_scripts
parent546d8b91c2e0991c410a42b2098ff1d478f24c73 (diff)
downloadvimium-98ea279485fc456bbe4349559f9c08a24e2c4214.tar.bz2
Show tip re. clicking command names.
It's pretty undiscoverable that you can click command names to yank them. So, this adds a tip to the bottom of the help dialog. Also, change the cursor to a pointer when hovering over command names.
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/vimium.css20
1 files changed, 13 insertions, 7 deletions
diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css
index 1b63c9da..a1d88a18 100644
--- a/content_scripts/vimium.css
+++ b/content_scripts/vimium.css
@@ -237,9 +237,9 @@ div#vimiumHelpDialog td.vimiumHelpDescription {
font-size:14px;
}
div#vimiumHelpDialog span.commandName {
- /* font-family:"courier new"; */
- /* color: #555; */
+ color: #555;
font-style: italic;
+ cursor: pointer;
}
/* Advanced commands are hidden by default until you show them. */
div#vimiumHelpDialog tr.advanced { display: none; }
@@ -267,13 +267,19 @@ div#vimiumHelpDialogFooter {
display: block;
position: relative;
}
+td.helpDialogBottomRight {
+ width: 100%;
+ text-align: right;
+}
div#vimiumHelpDialogFooter * { font-size:10px; }
-div#vimiumHelpDialogFooter .toggleAdvancedCommands {
- position: absolute;
- right: 2px;
- top: -34px;
+a#toggleAdvancedCommands, span#help-dialog-tip {
+ position: relative;
+ top: 19px;
+ color: #555;
+ white-space: nowrap;
+}
+td.helpDialogBottomLeft, td.helpDialogBottomRight {
font-size: 14px;
- color:#555;
}
a:link.vimiumHelDialogLink, a:visited.vimiumHelDialogLink, a:hover.vimiumHelDialogLink, a:active.vimiumHelDialogLink{