diff options
| author | Phil Crosby | 2009-12-31 11:43:01 -0500 | 
|---|---|---|
| committer | Phil Crosby | 2009-12-31 11:43:01 -0500 | 
| commit | d4c6154df8cdfd7fbe274235318959cd196600af (patch) | |
| tree | e74a84d3a3f9f89909f2a132a3e7c26359685b97 | |
| parent | 54394236e589be03c39b76fdfea861ba171193f1 (diff) | |
| download | vimium-d4c6154df8cdfd7fbe274235318959cd196600af.tar.bz2 | |
Make the HUD look a little nicer on Windows
| -rw-r--r-- | test_harnesses/has_popup_and_link_hud.html | 3 | ||||
| -rw-r--r-- | vimiumFrontend.js | 2 | 
2 files changed, 4 insertions, 1 deletions
| diff --git a/test_harnesses/has_popup_and_link_hud.html b/test_harnesses/has_popup_and_link_hud.html index 0f7b40d0..7504b589 100644 --- a/test_harnesses/has_popup_and_link_hud.html +++ b/test_harnesses/has_popup_and_link_hud.html @@ -18,6 +18,7 @@        width:400px;        height:400px;        background-color:#123456; +      float:left;      }      #hud { @@ -36,6 +37,7 @@      }    </style> +    <script type="text/javascript" charset="utf-8">      // Trigger the popup warning.      window.open("http://www.google.com"); @@ -46,6 +48,7 @@    <h2>Loading and popup HUD</h2>    <a id="biglink" href="http://ninjawords.com/one,two,three,four,five,six,seven,eight,nine">Big link</a> +  <input type="text" name="some_name" value="" id="some_name"/>    <!-- <div id="hud">Pop-ups Blocked</div> -->  </body>  </html>
\ No newline at end of file diff --git a/vimiumFrontend.js b/vimiumFrontend.js index a1ad7c9c..eb265df8 100644 --- a/vimiumFrontend.js +++ b/vimiumFrontend.js @@ -446,7 +446,7 @@ HUD = {          padding = "3px 3px 2px 3px";          border = "1px solid #b3b3b3";          borderRadius = "4px 4px 0 0"; -        fontFamily = "Lucida Grande"; +        fontFamily = "Lucida Grande, Arial, Sans";          zIndex = 99999999999;          textShadow = "0px 1px 2px #FFF";          lineHeight = "1.0"; | 
