From 0c12d468467b4637e4054f3434c8fb9dae4cbf04 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 5 Sep 2007 20:46:22 +0000 Subject: [PATCH] make the visual bell solid black and shorten the timeout interval --- chrome/content/vimperator/default.css | 3 +-- chrome/content/vimperator/vimperator.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/chrome/content/vimperator/default.css b/chrome/content/vimperator/default.css index 6e8f6e6c..3ec465c7 100644 --- a/chrome/content/vimperator/default.css +++ b/chrome/content/vimperator/default.css @@ -167,8 +167,7 @@ fieldset.paypal { #vimperator-visualbell { border: none; - background-color: blue; - opacity: 0.5; + background-color: black; } .status_insecure, .status_insecure * { diff --git a/chrome/content/vimperator/vimperator.js b/chrome/content/vimperator/vimperator.js index 1cb2477e..7fe4b3b7 100644 --- a/chrome/content/vimperator/vimperator.js +++ b/chrome/content/vimperator/vimperator.js @@ -295,7 +295,7 @@ const vimperator = (function() //{{{ popup.width = box.width; popup.showPopup(win, box.screenX, box.screenY, "popup"); - setTimeout(function() { popup.hidePopup(); }, 375); + setTimeout(function() { popup.hidePopup(); }, 50); }, copyToClipboard: function(str)