~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/console/console.css

  • Committer: William Grant
  • Date: 2009-01-22 04:47:42 UTC
  • mfrom: (1080.1.93 storm)
  • Revision ID: grantw@unimelb.edu.au-20090122044742-sa8gnww0ma2bm2rv
Merge Storm branch. ivle.db is dead. Watch out for the schema change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
 
    background-color: black;
 
2
    background-color: white;
3
3
    position: absolute;
4
 
    color: white;
 
4
    font-size: 150%;
 
5
    color: black;
5
6
    padding: 0;
6
7
    width: 100%;
7
8
    top: 0;
16
17
    right: 0;
17
18
    z-index: 1;     /* Go in front of console_filler */
18
19
}
 
20
#console_body.windowpane.minimal {
 
21
    border-top: 1px solid black;
 
22
}
19
23
#console_body.windowpane #console_body2 {
20
24
    /* Need some padding in windowpane mode */
21
25
    /* (In full mode, things are positioned absolutely) */
67
71
    /* Don't want this absolutely positioned in windowpane mode */
68
72
    position: static;
69
73
    /* Give it an explicit height instead */
70
 
    height: 20em;
 
74
    height: 15em;
71
75
    margin-bottom: 0.5em;
72
76
}
73
77
#console_input {
85
89
    font-family: monospace;
86
90
}
87
91
#console_inputText {
88
 
    background-color: black;
89
 
    color: white;
90
 
    width: 90%;
 
92
    background-color: white;
 
93
    font-size: 80%;
 
94
    color: black;
 
95
    width: 75%;
 
96
}
 
97
#console_inputText.disabled {
 
98
    background-color: #aaa;
91
99
}
92
100
/* console filler takes up the same space as console_body.windowpane
93
101
 * but its position is relative, not fixed.
118
126
     */
119
127
    height: 2em;
120
128
}
121
 
pre.errorMsg {
 
129
*.errorMsg {
122
130
    color: red;
123
131
    margin-top: 0em;
124
132
    margin-bottom: 0em;
125
133
}
126
 
pre.inputMsg {
127
 
    color: gray;
128
 
    margin-top: 0em;
129
 
    margin-bottom: 0em;
130
 
}
131
 
pre.outputMsg {
 
134
*.inputPrompt {
 
135
    color: #800;    /* Deep red */
 
136
    font-weight: bold;
 
137
    margin-top: 0em;
 
138
    margin-bottom: 0em;
 
139
}
 
140
*.inputMsg {
 
141
    color: #404040;
 
142
    margin-top: 0em;
 
143
    margin-bottom: 0em;
 
144
}
 
145
*.outputMsg {
132
146
    margin-top: 0em;
133
147
    margin-bottom: 0em;
134
148
}