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

« back to all changes in this revision

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

  • Committer: drtomc
  • Date: 2008-02-01 03:06:47 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:366
Somehow a couple of changed that address issues sb raised didn't get committed previously. Here they are.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
 
    background-color: white;
 
2
    background-color: black;
3
3
    position: absolute;
4
 
    font-size: 150%;
5
 
    color: black;
 
4
    color: white;
6
5
    padding: 0;
7
6
    width: 100%;
8
7
    top: 0;
17
16
    right: 0;
18
17
    z-index: 1;     /* Go in front of console_filler */
19
18
}
20
 
#console_body.windowpane.minimal {
21
 
    border-top: 1px solid black;
22
 
}
23
19
#console_body.windowpane #console_body2 {
24
20
    /* Need some padding in windowpane mode */
25
21
    /* (In full mode, things are positioned absolutely) */
60
56
    right: 0.5em;
61
57
    /* Display scroll bars */
62
58
    overflow: scroll;
63
 
    /* Some browsers support overflow-x and overflow-y. In this case, use
64
 
     * overflow-x: auto to disable the horizontal scroll bar.
65
 
     * (If unsupported this will simply fall back to a harmless but annoying
66
 
     * horizontal scroll bar).
67
 
     */
68
 
    overflow-x: auto;
69
59
}
70
60
#console_body.windowpane #console_output {
71
61
    /* Don't want this absolutely positioned in windowpane mode */
89
79
    font-family: monospace;
90
80
}
91
81
#console_inputText {
92
 
    background-color: white;
93
 
    font-size: 80%;
94
 
    color: black;
 
82
    background-color: black;
 
83
    color: white;
95
84
    width: 90%;
96
85
}
97
 
#console_inputText.disabled {
98
 
    background-color: #aaa;
99
 
}
100
86
/* console filler takes up the same space as console_body.windowpane
101
87
 * but its position is relative, not fixed.
102
88
 * This avoids having the console overlap with the bottom 28em of page
126
112
     */
127
113
    height: 2em;
128
114
}
129
 
*.errorMsg {
 
115
pre.errorMsg {
130
116
    color: red;
131
117
    margin-top: 0em;
132
118
    margin-bottom: 0em;
133
119
}
134
 
*.inputMsg {
135
 
    color: #404040;
 
120
pre.inputMsg {
 
121
    color: gray;
136
122
    margin-top: 0em;
137
123
    margin-bottom: 0em;
138
124
}
139
 
*.outputMsg {
 
125
pre.outputMsg {
140
126
    margin-top: 0em;
141
127
    margin-bottom: 0em;
142
128
}