~ivle-dev/ivle/ui-the-third

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-08-03 02:05:34 UTC
  • mfrom: (1294.1.8 trunk)
  • Revision ID: grantw@unimelb.edu.au-20090803020534-v4o981611g4dimgw
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    left: 0.5em;
93
93
    right: 0.5em;
94
94
    bottom: 0.5em;
95
 
    /* Treat console line as table formated */
96
 
    display: table
 
95
    /* Treat console line as table formatted, so the textbox is dynamic in size. */
 
96
    display: table;
97
97
}
98
98
 
99
 
.trow {
 
99
#console_input > div {
100
100
    display: table-row;
101
101
}
102
102
 
103
 
.tcell {
 
103
#console_input > div > * {
104
104
    display: table-cell;
 
105
 
 
106
    /* Don't let the buttons wrap onto multiple lines.
 
107
     * This forces the textbox to shrink.
 
108
     */
 
109
    white-space: nowrap;
105
110
}
106
111
 
107
 
.tcell .console_button {
 
112
#console_input > div > .console_button {
108
113
    /* If the console button is in a cell, don't float */
109
114
    position: static !important;
 
115
    padding: 0 0.2em;
110
116
}
111
117
 
112
118
#console_inputCell {
120
126
}
121
127
#console_prompt {
122
128
    font-family: monospace;
123
 
    white-space: pre;
124
129
}
125
130
#console_inputText {
126
131
    font-family: monospace;