aboutsummaryrefslogtreecommitdiffstats
path: root/vimiumFrontend.js
diff options
context:
space:
mode:
authorPeter Parks2011-11-02 14:10:54 -0700
committerPeter Parks2012-01-15 11:52:03 -0800
commit44c36c6ab1c6111f25e535fabfd3b5c75fb4120e (patch)
tree7fb0704fe904de804ddaba3617b083515ac2b202 /vimiumFrontend.js
parent7745b49e9e90f043f4e494f1fe024cbd5b833de5 (diff)
downloadvimium-44c36c6ab1c6111f25e535fabfd3b5c75fb4120e.tar.bz2
Adjusted CSS for linkhints, help menu, text search, and bookmarks search UI elements. They should now be able to stand up to base element declarations created by a website.
Added comments to the linkhints css settings on the options page and set default properties that a user would change to make it clear where they should be modified. Added a dropshadow to the linkhints to make them stand out better against similarly colored site backgrounds.
Diffstat (limited to 'vimiumFrontend.js')
-rw-r--r--vimiumFrontend.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/vimiumFrontend.js b/vimiumFrontend.js
index edc67709..9b93b4dd 100644
--- a/vimiumFrontend.js
+++ b/vimiumFrontend.js
@@ -784,12 +784,17 @@ HUD = {
"line-height: 100%;" +
"font-size: 11px;" +
"font-weight: normal;" +
+ "letter-spacing: 0;" +
+ "text-decoration: none;" +
"}" +
".vimiumHUD {" +
"position: fixed;" +
+ "top: auto;" +
+ "left: auto;" +
"bottom: 0px;" +
"color: black;" +
"height: 13px;" +
+ "min-height: 13px;" +
"width: auto;" +
"max-width: 400px;" +
"min-width: 150px;" +
@@ -806,6 +811,10 @@ HUD = {
"line-height: 1.0;" +
"opacity: 0;" +
"}" +
+ // Hide the span between search box letters
+ ".vimiumHUD span {" +
+ "display: none;" +
+ "}" +
".vimiumHUD a, .vimiumHUD a:hover {" +
"background: transparent;" +
"color: blue;" +