1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-31 07:35:45 +01:00

Sizing hacks for REPL modes.

This commit is contained in:
Kris Maglione
2011-10-04 00:43:02 -04:00
parent 64df9d9740
commit f1e4e9958c
6 changed files with 29 additions and 39 deletions

View File

@@ -200,27 +200,6 @@ statusbarpanel {
font: inherit;
}
.dactyl-completions-content,
#dactyl-multiline-output-content,
#dactyl-multiline-input {
white-space: pre;
font-family: -moz-fixed;
margin: 0px;
}
.dactyl-completions-content table,
#dactyl-multiline-output-content table {
white-space: inherit;
border-spacing: 0px;
}
.dactyl-completions-content td,
#dactyl-multiline-output-content td,
.dactyl-completions-content th,
#dactyl-multiline-output-content th {
padding: 0px 2px;
}
/* for Teledactyl's composer */
#content-frame, #appcontent {
border: 0px;

View File

@@ -84,6 +84,12 @@ CmdInput;.dactyl-commandline-command
CmdOutput /* The output of commands executed by <ex>:run</ex> */ \
white-space: pre;
MOW;;;FontFixed,Normal /* The Multiline Output Window */ \
margin: 0; white-space: pre;
MOW table white-space: inherit; border-spacing: 0px;
MOW :-moz-any(td, th) padding: 0px 2px;
Comp;;;FontFixed,Normal /* The completion window */ \
margin: 0; border-top: 1px solid black;