1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 05:25:46 +01:00

Added :sty chrome to style the main window, moved a bunch of inline styles to CSS, fixed some completion bugs, removed util.blankDocument

This commit is contained in:
Kris Maglione
2008-10-05 23:38:31 +00:00
parent 2be0219384
commit 0a8252fb2a
10 changed files with 143 additions and 99 deletions

View File

@@ -504,8 +504,8 @@ liberator.Bookmarks = function () //{{{
{
url: item[0],
title: item[1],
extra: [['keyword', item[2], 'red'],
['tags', (item[3]||[]).join(', '), 'blue']].filter(function (i) i[1])
extra: [['keyword', item[2], "hl-Keyword"],
['tags', (item[3]||[]).join(', '), "hl-Tag"]].filter(function (i) i[1])
} for each (item in items)));
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
},