1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 23:45:47 +01:00

use the hl-Title class for the completion widget title

This commit is contained in:
Doug Kearns
2008-09-16 16:09:14 +00:00
parent 2fe5bd2913
commit 0d2e00eb6b
8 changed files with 15 additions and 15 deletions

View File

@@ -235,7 +235,7 @@ liberator.Bookmarks = function () //{{{
{
var sh = getWebNavigation().sessionHistory;
var list = ":" + (liberator.util.escapeHTML(liberator.commandline.getCommand()) || "jumps") + "<br/>" + "<table>";
list += "<tr style=\"text-align: left;\" class=\"hl-Title\"><th colspan=\"2\">jump</th><th>title</th><th>URI</th></tr>";
list += "<tr class=\"hl-Title\" align=\"left\"><th colspan=\"2\">jump</th><th>title</th><th>URI</th></tr>";
var num = -sh.index;
for (var i = 0; i < sh.count; i++)
@@ -501,7 +501,7 @@ liberator.Bookmarks = function () //{{{
var title, url, tags, keyword, extra;
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr align=\"left\" class=\"hl-Title\"><th>title</th><th>URL</th></tr>";
"<table><tr class=\"hl-Title\" align=\"left\"><th>title</th><th>URL</th></tr>";
for (var i = 0; i < items.length; i++)
{
title = liberator.util.escapeHTML(liberator.util.clip(items[i][1], 50));
@@ -805,7 +805,7 @@ liberator.History = function () //{{{
else
{
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr align=\"left\" class=\"hl-Title\"><th>title</th><th>URL</th></tr>";
"<table><tr class=\"hl-Title\" align=\"left\"><th>title</th><th>URL</th></tr>";
for (var i = 0; i < items.length; i++)
{
var title = liberator.util.escapeHTML(liberator.util.clip(items[i][1], 50));
@@ -983,7 +983,7 @@ liberator.QuickMarks = function () //{{{
}
var list = ":" + liberator.util.escapeHTML(liberator.commandline.getCommand()) + "<br/>" +
"<table><tr align=\"left\" class=\"hl-Title\"><th>QuickMark</th><th>URL</th></tr>";
"<table><tr class=\"hl-Title\" align=\"left\"><th>QuickMark</th><th>URL</th></tr>";
for (var i = 0; i < marks.length; i++)
{