File tree Expand file tree Collapse file tree 2 files changed +57
-1
lines changed
Expand file tree Collapse file tree 2 files changed +57
-1
lines changed Original file line number Diff line number Diff line change @@ -21359,7 +21359,7 @@ return FUNC;
2135921359})();
2136021360l1582;
2136121361var l1584=internals.intern('LISP-IMPLEMENTATION-VERSION','COMMON-LISP');
21362- var l1585=internals.make_lisp_string('');
21362+ var l1585=internals.make_lisp_string('d291da4 ');
2136321363l1584.fvalue=(function(){var FUNC=(function JSCL_USER_LISPIMPLEMENTATIONVERSION(values){internals.checkArgsAtMost(arguments.length-1,0);
2136421364var v6453=this;
2136521365return (function(){return l1585;
Original file line number Diff line number Diff line change 1+ /* The console container element */
2+ body { background-color : black; font-size : 16px ; font-family : Courier; overflow : hidden; padding : 0 0 0 0 ;}
3+
4+ # console {
5+ position : absolute;
6+ top : 0px ;
7+ bottom : 0px ;
8+ left : 0px ;
9+ right : 0px ;
10+ background-color : black;
11+ }
12+
13+ .parents {
14+ font-weight : bold;
15+ }
16+
17+ /* The inner console element. */
18+ .jqconsole {
19+ padding : 10px ;
20+ }
21+ /* The cursor. */
22+ .jqconsole-cursor {
23+ background-color : gray;
24+ }
25+ /* The cursor color when the console looses focus. */
26+ .jqconsole-blurred .jqconsole-cursor {
27+ background-color : # 666 ;
28+ }
29+ /* The current prompt text color */
30+ .jqconsole-prompt {
31+ color : White;
32+ }
33+ /* The command history */
34+ .jqconsole-old-prompt {
35+ color : White;
36+ font-weight : normal;
37+ }
38+ /* The text color when in input mode. */
39+ .jqconsole-input {
40+ color : White;
41+ }
42+ /* Previously entered input. */
43+ .jqconsole-old-input {
44+ color : White;
45+ font-weight : normal;
46+ }
47+ /* The text color of the output. */
48+ .jqconsole-output {
49+ color : green;
50+ }
51+ .jqconsole-return , .jqconsole-header {
52+ color : gray;
53+ }
54+ .jqconsole-error {
55+ color : red;
56+ }
You can’t perform that action at this time.
0 commit comments