1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-14 16:05:47 +01:00

move more-prompt messages to the commandline and use the default UI font size

in the MOW
This commit is contained in:
Doug Kearns
2007-10-02 20:45:56 +00:00
parent bf6a0cdecd
commit e920cd3170
8 changed files with 115 additions and 56 deletions

View File

@@ -114,6 +114,8 @@ the terms of any one of the MPL, the GPL or the LGPL.
background-color: black;
}
/* highlight groups */
.hl-Normal {
background-color: white;
color: black;
@@ -145,4 +147,44 @@ the terms of any one of the MPL, the GPL or the LGPL.
color: red;
}
.hl-Normal {
background-color: white;
color: black;
}
.hl-ErrorMsg {
background-color: red;
color: white;
font-weight: bold;
}
.hl-MoreMsg {
color: green;
background-color: white;
}
.hl-Title {
color: magenta;
background-color: white;
font-weight: bold;
}
/* MOW */
#vimperator-multiline-output-content {
white-space: pre; /* -moz-pre-wrap FIXME: Should lines wrap like Vim? */
font-family: -moz-fixed;
margin: 0px;
}
#vimperator-multiline-output-content * {
font: inherit;
}
#vimperator-multiline-output-content table {
white-space: inherit;
border-spacing: 0px;
}
#vimperator-multiline-output-content td {
padding: 0px;
}
/* vim: set fdm=marker sw=4 ts=4 et: */