diff --git a/content/find.js b/content/find.js index 422e42c4..ddaf1f65 100644 --- a/content/find.js +++ b/content/find.js @@ -373,9 +373,9 @@ liberator.Search = function () //{{{ // our command line setTimeout(function () { if (up) - liberator.commandline.echo("search hit TOP, continuing at BOTTOM", liberator.commandline.HL_WARNING); + liberator.commandline.echo("search hit TOP, continuing at BOTTOM", liberator.commandline.HL_WARNINGMSG); else - liberator.commandline.echo("search hit BOTTOM, continuing at TOP", liberator.commandline.HL_WARNING); + liberator.commandline.echo("search hit BOTTOM, continuing at TOP", liberator.commandline.HL_WARNINGMSG); }, 0); } else diff --git a/content/ui.js b/content/ui.js index 82b4575d..e2994043 100644 --- a/content/ui.js +++ b/content/ui.js @@ -439,13 +439,13 @@ liberator.CommandLine = function () //{{{ return { - HL_NORMAL : "hl-Normal", - HL_ERRORMSG : "hl-ErrorMsg", - HL_MODEMSG : "hl-ModeMsg", - HL_MOREMSG : "hl-MoreMsg", - HL_QUESTION : "hl-Question", - HL_INFOMSG : "hl-InfoMsg", - HL_WARNING : "hl-Warning", + HL_NORMAL : "hl-Normal", + HL_ERRORMSG : "hl-ErrorMsg", + HL_MODEMSG : "hl-ModeMsg", + HL_MOREMSG : "hl-MoreMsg", + HL_QUESTION : "hl-Question", + HL_INFOMSG : "hl-InfoMsg", + HL_WARNINGMSG : "hl-WarningMsg", // not yet used FORCE_MULTILINE : 1 << 0, diff --git a/skin/vimperator.css b/skin/vimperator.css index d73ff3d8..8d0040cd 100644 --- a/skin/vimperator.css +++ b/skin/vimperator.css @@ -140,7 +140,7 @@ the terms of any one of the MPL, the GPL or the LGPL. color: magenta; font-weight: bold !important; } -.hl-Warning { +.hl-WarningMsg { background-color: white; color: red; }