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

« back to all changes in this revision

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

  • Committer: dcoles
  • Date: 2008-02-25 02:26:39 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:562
Added new app: Diff (SVN diff application)
setup.py: Added diffservice script to jail scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#console_body {
2
2
    background-color: white;
3
3
    position: absolute;
4
 
    font-size: 150%;
5
4
    color: black;
6
5
    padding: 0;
7
6
    width: 100%;
71
70
    /* Don't want this absolutely positioned in windowpane mode */
72
71
    position: static;
73
72
    /* Give it an explicit height instead */
74
 
    height: 15em;
 
73
    height: 20em;
75
74
    margin-bottom: 0.5em;
76
75
}
77
76
#console_input {
90
89
}
91
90
#console_inputText {
92
91
    background-color: white;
93
 
    font-size: 80%;
94
92
    color: black;
95
 
    width: 75%;
96
 
}
97
 
#console_inputText.disabled {
98
 
    background-color: #aaa;
 
93
    width: 90%;
99
94
}
100
95
/* console filler takes up the same space as console_body.windowpane
101
96
 * but its position is relative, not fixed.
126
121
     */
127
122
    height: 2em;
128
123
}
129
 
*.errorMsg {
 
124
pre.errorMsg {
130
125
    color: red;
131
126
    margin-top: 0em;
132
127
    margin-bottom: 0em;
133
128
}
134
 
*.inputPrompt {
135
 
    color: #800;    /* Deep red */
136
 
    font-weight: bold;
137
 
    margin-top: 0em;
138
 
    margin-bottom: 0em;
139
 
}
140
 
*.inputMsg {
 
129
pre.inputMsg {
141
130
    color: #404040;
142
131
    margin-top: 0em;
143
132
    margin-bottom: 0em;
144
133
}
145
 
*.outputMsg {
 
134
pre.outputMsg {
146
135
    margin-top: 0em;
147
136
    margin-bottom: 0em;
148
137
}