1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-29 11:45:46 +01:00

added contact section to homepage

This commit is contained in:
Martin Stubenschrott
2007-04-18 13:33:49 +00:00
parent c431f8c2e5
commit 94bbe797c7
3 changed files with 8 additions and 3 deletions

View File

@@ -251,7 +251,7 @@ var g_commands = [/*{{{*/
null
],
[
["tabopen", "t", "to", "topen", "tabedit"],
["tabopen", "t", "to", "topen", "tabedit", "tabnew"],
"Open one or more URLs in a new tab",
"Like <code class=command>:open</code> but open URLs in a new tab. If used with !, the 'tabopen' value of the 'activate' setting is negated.",
function (args, special) { if (args.length > 0) openURLsInNewTab(args, !special); else openURLsInNewTab("about:blank", true); },

View File

@@ -92,7 +92,7 @@ var g_settings = [/*{{{*/
function(value) { set_pref("focusedhintstyle", value); },
function() { return get_pref("focusedhintstyle"); },
"string",
"z-index:500;font-family:monospace;font-size:12;color:ButtonText;background-color:ButtonShadow;border-color:ButtonShadow;border-width:1px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
"z-index:5000;font-family:monospace;font-size:12;color:ButtonText;background-color:ButtonShadow;border-color:ButtonShadow;border-width:1px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
null,
null
],
@@ -136,7 +136,7 @@ var g_settings = [/*{{{*/
function(value) { set_pref("hintstyle", value); },
function() { return get_pref("hintstyle"); },
"string",
"z-index:500;font-family:monospace;font-size:12;color:black;background-color:yellow;border-color:ButtonShadow;border-width:0px;border-style:solid;padding:0px 0px 0px 0px;position:absolute;",
"z-index:5000;font-family:monospace;font-size:12;color:black;background-color:yellow;border-color:ButtonShadow;border-width:0px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
null,
null
],