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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-02-23 13:56:44 UTC
  • mto: (1100.1.8 new-ui)
  • mto: This revision was merged to the branch mainline in revision 1119.
  • Revision ID: grantw@unimelb.edu.au-20090223135644-vkliv8qg72m4cjsm
Shrink, monospace and nativify (does that even make sense?) bits of the console

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%;
23
22
#console_body.windowpane #console_body2 {
24
23
    /* Need some padding in windowpane mode */
25
24
    /* (In full mode, things are positioned absolutely) */
26
 
    padding: 0.5em;
 
25
    padding: 0.2em;
27
26
}
28
27
/* Heading bar */
29
28
#console_heading {
81
80
    right: 0.5em;
82
81
    bottom: 0.5em;
83
82
}
 
83
 
84
84
#console_body.windowpane #console_input {
85
85
    /* Don't want this absolutely positioned in windowpane mode */
86
86
    position: static;
89
89
    font-family: monospace;
90
90
}
91
91
#console_inputText {
92
 
    background-color: white;
93
 
    font-size: 80%;
94
 
    color: black;
 
92
    font-family: monospace;
95
93
    width: 75%;
96
94
}
97
 
#console_inputText.disabled {
98
 
    background-color: #aaa;
99
 
}
 
95
 
100
96
/* console filler takes up the same space as console_body.windowpane
101
97
 * but its position is relative, not fixed.
102
98
 * This avoids having the console overlap with the bottom 28em of page
117
113
    right: 0;
118
114
}
119
115
#console_filler.maximal {
120
 
    /* total height of console = 20em + 1em + 0.5em + 0.5em + 0.5em + 1em + borders
121
 
     */
122
 
    height: 24em;
 
116
    /* Trial and error is useful to work this out. */
 
117
    height: 14em;
123
118
}
124
119
#console_filler.minimal {
125
 
    /* total height of console = 1em + 0.5em + 0.5em
126
 
     */
127
 
    height: 2em;
 
120
    /* Trial and error is useful to work this out. */
 
121
    height: 1em;
128
122
}
129
123
*.errorMsg {
130
124
    color: red;