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

« back to all changes in this revision

Viewing changes to ivle/webapp/console/media/console.css

  • Committer: Matt Giuca
  • Date: 2010-07-22 00:46:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1818.
  • Revision ID: matt.giuca@gmail.com-20100722004645-giso3xsjm8o8rflf
Project page: Removed the space before the '*'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#console_body {
2
 
    background-color: black;
 
1
.console_body {
 
2
    background-color: white;
3
3
    position: absolute;
4
 
    color: white;
 
4
    color: black;
5
5
    padding: 0;
6
6
    width: 100%;
7
7
    top: 0;
8
8
    bottom: 0;
9
9
}
10
10
/* console_body when displayed as a window panel and not the whole app */
11
 
#console_body.windowpane {
 
11
.console_body.windowpane {
12
12
    position: fixed;
13
13
    top: auto;      /* Do not fix to top */
14
14
    bottom: 0;
16
16
    right: 0;
17
17
    z-index: 1;     /* Go in front of console_filler */
18
18
}
19
 
#console_body.windowpane #console_body2 {
 
19
.console_body.windowpane.minimal {
 
20
    border-top: 1px solid black;
 
21
}
 
22
.console_body.windowpane .console_body2 {
20
23
    /* Need some padding in windowpane mode */
21
24
    /* (In full mode, things are positioned absolutely) */
22
 
    padding: 0.5em;
23
 
}
 
25
    padding: 0.2em;
 
26
}
 
27
 
 
28
.console_help_example_body {
 
29
    border: 1px solid black;
 
30
    border-top: none;
 
31
    padding-bottom: 0.5em;
 
32
}
 
33
 
24
34
/* Heading bar */
25
 
#console_heading {
 
35
.console_heading {
26
36
    background-color: gray;
27
37
    border: 2px solid black;
28
38
    padding: 2px;
31
41
    font-weight: bold;
32
42
}
33
43
/* If "minimized", console_heading and console_output are hidden */
34
 
#console_body.minimal #console_heading,
35
 
#console_body.minimal #console_output,
 
44
.console_body.minimal .console_heading,
 
45
.console_body.minimal .console_output,
36
46
/* If "maximized", the maximize button is hidden */
37
 
#console_body.maximal .maximize {
 
47
.console_body.maximal .maximize {
38
48
    display: none;
39
49
}
40
50
/* Minimize/maximize button */
43
53
    position: absolute;
44
54
    right: 0.5em;
45
55
}
46
 
#console_output {
 
56
.console_output {
47
57
    /*height: 20em;*/       /* Might be needed for windowpane mode */
48
58
    /*margin-bottom: 0.5em;*/
49
59
    position: absolute;
50
 
    /* 2em is to accomodate the header bar, and some padding */
51
 
    top: 2em;
 
60
    /* Start immediately under the blue header. */
 
61
    top: 0;
52
62
    /* 2.5em is to accomodate the input bar, and padding either side */
53
63
    bottom: 2.5em;
54
 
    /* left and right 0.5em are just for horizontal padding */
55
 
    left: 0.5em;
56
 
    right: 0.5em;
 
64
    left: 0;
 
65
    right: 0;
57
66
    /* Display scroll bars */
58
67
    overflow: scroll;
59
68
    /* Some browsers support overflow-x and overflow-y. In this case, use
62
71
     * horizontal scroll bar).
63
72
     */
64
73
    overflow-x: auto;
 
74
    padding: 0.5em;
 
75
    /* On some displays, monospace font is much smaller than everything else.
 
76
     * We just set the console font to 13px to appear a bit bigger (this is
 
77
     * the same size as the editor's font).
 
78
     */
 
79
    font-size: 13px;
65
80
}
66
 
#console_body.windowpane #console_output {
 
81
.console_body.windowpane .console_output {
67
82
    /* Don't want this absolutely positioned in windowpane mode */
68
83
    position: static;
 
84
    /* Make it a bit higher up, because the header is thinner in this mode */
 
85
    top: 2em;
69
86
    /* Give it an explicit height instead */
70
 
    height: 20em;
 
87
    height: 15em;
71
88
    margin-bottom: 0.5em;
72
89
}
73
 
#console_input {
 
90
 
 
91
.console_help_example .console_output {
 
92
    position: relative;
 
93
    top: 0;
 
94
    height: auto;
 
95
}
 
96
 
 
97
.console_body.windowpane.maximal, .console_body.windowpane .console_heading,
 
98
.console_help_example .console_heading {
 
99
    -moz-border-radius-topleft: 10px;
 
100
    -moz-border-radius-topright: 10px;
 
101
    -webkit-border-top-left-radius: 10px;
 
102
    -webkit-border-top-right-radius: 10px;
 
103
    border-top-left-radius: 10px;
 
104
    border-top-right-radius: 10px;
 
105
}
 
106
 
 
107
.console_input {
74
108
    position: absolute;
75
109
    /* Input bar goes along the bottom. Pad all sides */
76
 
    left: 0.5em;
77
 
    right: 0.5em;
78
110
    bottom: 0.5em;
79
 
}
80
 
#console_body.windowpane #console_input {
 
111
    padding: 0 0.5em;
 
112
    /* Treat console line as table formatted, so the textbox is dynamic in size. */
 
113
    display: table;
 
114
    font-size: 13px;
 
115
}
 
116
 
 
117
.console_help_example .console_input {
 
118
    position: relative;
 
119
    bottom: 0;
 
120
}
 
121
 
 
122
.console_input > div {
 
123
    display: table-row;
 
124
}
 
125
 
 
126
.console_input > div > * {
 
127
    display: table-cell;
 
128
 
 
129
    /* Don't let the buttons wrap onto multiple lines.
 
130
     * This forces the textbox to shrink.
 
131
     */
 
132
    white-space: nowrap;
 
133
}
 
134
 
 
135
.console_input > div > .console_button {
 
136
    /* If the console button is in a cell, don't float */
 
137
    position: static !important;
 
138
    padding: 0 0.2em;
 
139
}
 
140
 
 
141
.console_inputCell {
 
142
    width: 100%;
 
143
    padding-right: 0.5em;
 
144
}
 
145
 
 
146
.console_body.windowpane .console_input {
81
147
    /* Don't want this absolutely positioned in windowpane mode */
82
148
    position: static;
83
149
}
84
 
#console_prompt {
85
 
    font-family: monospace;
86
 
}
87
 
#console_inputText {
88
 
    background-color: black;
89
 
    color: white;
90
 
    width: 90%;
91
 
}
 
150
.console_prompt {
 
151
    font-family: monospace;
 
152
    font-weight: bold;
 
153
    white-space: pre;
 
154
}
 
155
.console_inputText {
 
156
    font-family: monospace;
 
157
    width: 100%;
 
158
}
 
159
 
92
160
/* console filler takes up the same space as console_body.windowpane
93
161
 * but its position is relative, not fixed.
94
162
 * This avoids having the console overlap with the bottom 28em of page
109
177
    right: 0;
110
178
}
111
179
#console_filler.maximal {
112
 
    /* total height of console = 20em + 1em + 0.5em + 0.5em + 0.5em + 1em + borders
113
 
     */
114
 
    height: 24em;
 
180
    /* Trial and error is useful to work this out. */
 
181
    height: 14em;
115
182
}
116
183
#console_filler.minimal {
117
 
    /* total height of console = 1em + 0.5em + 0.5em
118
 
     */
 
184
    /* Trial and error is useful to work this out. */
119
185
    height: 2em;
120
186
}
121
 
pre.errorMsg {
 
187
 
 
188
.console_message {
 
189
    color: gray;
 
190
}
 
191
 
 
192
*.errorMsg {
122
193
    color: red;
123
194
    margin-top: 0em;
124
195
    margin-bottom: 0em;
125
196
}
126
 
pre.inputMsg {
127
 
    color: gray;
128
 
    margin-top: 0em;
129
 
    margin-bottom: 0em;
130
 
}
131
 
pre.outputMsg {
 
197
*.inputPrompt {
 
198
    color: #800;    /* Deep red */
 
199
    font-weight: bold;
 
200
    margin-top: 0em;
 
201
    margin-bottom: 0em;
 
202
}
 
203
*.inputMsg {
 
204
    color: #404040;
 
205
    margin-top: 0em;
 
206
    margin-bottom: 0em;
 
207
}
 
208
*.outputMsg {
132
209
    margin-top: 0em;
133
210
    margin-bottom: 0em;
134
211
}