Implemented full screen operations in XMLTerm, although still buggy. Commands like 'less', 'vi', and 'emacs -nw' now work in stand-alone xmlterm, although scrolling is still messed up. Compiles with Feb21 tree. git-svn-id: svn://10.0.0.236/trunk@61437 18797224-902f-48f8-a5cc-f745e15eee43
24 lines
694 B
CSS
24 lines
694 B
CSS
/* xmlterm.css: XMLterm default style sheet */
|
|
|
|
BODY { font-family: monaco, courier, elite, monospace;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
DIV, PRE, SPAN { margin: 0; padding-top: 0; padding-bottom: 0 }
|
|
|
|
PRE { font-family: monaco;
|
|
line-height: 120% }
|
|
|
|
/* Input components */
|
|
SPAN.prompt { color: blue }
|
|
SPAN.command { color: blue }
|
|
|
|
/* Screen display */
|
|
PRE.row { margin: 0; padding-top: 0; padding-bottom: 0 }
|
|
SPAN.row { margin: 0; padding-top: 0; padding-bottom: 0 }
|
|
|
|
/* Directory display */
|
|
SPAN.plainfile { font-family: monaco}
|
|
SPAN.directory { font-family: monaco; color: blue; cursor: hand }
|
|
SPAN.executable { font-family: monaco; color: blue; cursor: hand }
|