1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-11 03:55:52 +01:00

added new hint color options and a new hintmatching option (thanks Daniel)

This commit is contained in:
Martin Stubenschrott
2008-04-30 21:45:36 +00:00
parent 47d149910f
commit 3c4edd335b
7 changed files with 192 additions and 50 deletions

View File

@@ -172,12 +172,54 @@ or @oncommand or @class='lk' or @class='s'] |
The XPath string of hintable elements activated by [m];[m].
____
|\'fhs'| |\'focusedhintstyle'|
||'focusedhintstyle' 'fhs'|| string
|\'hs'| |\'hintstyle'|
||'hintstyle' 'hs'|| string
____
(default: z-index:5000; font-family:monospace; font-size:12px; color:ButtonText; background-color:ButtonShadow; border-color:ButtonShadow; border-width:1px; border-style:solid; padding:0px 1px 0px 1px; position:absolute;)
(default: z-index:5000; font-family:monospace; font-size:12px; color:white; background-color:red; border-color:ButtonShadow; border-width:0px; border-style:solid; padding:0px 1px 0px 1px; position:absolute;)
CSS specification of hints
____
|\'lfc'| |\'linkfgcolor'|
||'linkfgcolor' 'lfc'|| string (default: black)
____
Foreground color of a link during hint mode.
____
|\'lbc'| |\'linkbgcolor'|
||'linkbgcolor' 'lbc'|| string (default: yellow)
____
Background color of a link during hint mode.
____
|\'alfc'| |\'activelinkfgcolor'|
||'activelinkfgcolor' 'alfc'|| string (default: black)
____
Foreground color of the current active link during hint mode.
____
|\'albc'| |\'activelinkbgcolor'|
||'activelinkbgcolor' 'albc'|| string (default: ##88FF00)
____
Background color of the current active link during hint mode.
____
|\'hm'| |\'hintmatching'|
||'hintmatching' 'hm'|| string (default: contains)
____
Change the hint matching algorithm during hint mode. Possible values:
`--------------`------------------------------------------------------------------------------------------------------------------------
*contains* The typed characters are splitted by spaces, and these character groups have to be anywhere inside the text of the link.
*wordboundary* The typed characters are splitted by spaces, and these character groups must each match the start of a word of the link.
*startswith* The typed characters have to be in the typed order at the beginning of the text of the link.
----------------------------------------------------------------------------------------------------------------------------------------
CSS specification of focused hints
____
|\'nofs'| |\'nofullscreen'| |\'fs'| |\'fullscreen'|