1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 21:24:11 +01:00

Try to move the caret within the viewport on entering Caret or Find mode. Closes issue #170.

This commit is contained in:
Kris Maglione
2011-10-03 21:11:26 -04:00
parent b19375d109
commit 654cf64c02
7 changed files with 93 additions and 9 deletions

View File

@@ -177,18 +177,21 @@ HelpType;;;FontCode /* An option type */ \
HelpWarning /* The indicator for a warning */ \
color: red; font-weight: bold;
HelpXML;;;FontCode {
/* Highlighted XML */
HelpXMLBase;;;FontCode {
white-space: pre;
display: inline-block;
color: #C5F779;
background-color: #444444;
border: 1px dashed #aaaaaa;
font-family: Terminus, Fixed, monospace;
}
HelpXMLBlock;;;HelpXML {
HelpXML;;;HelpXMLBase {
/* Highlighted XML */
display: inline-block;
border: 1px dashed #aaaaaa;
}
HelpXMLBlock;;;HelpXMLBase {
display: block;
margin-left: 2em;
border: 1px dashed #aaaaaa;
}
HelpXMLAttribute color: #C5F779;
HelpXMLAttribute::after color: #E5E5E5; content: "=";