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

« back to all changes in this revision

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

  • Committer: David Coles
  • Date: 2009-07-30 07:46:28 UTC
  • Revision ID: coles.david@gmail.com-20090730074628-9lm1hyjmobpvwhy3
Fix the console input UI so that it displays propperly regardless of window width
 by laying it out with 'display: table'. Also fixed file browser spacing since
console overlapped the status bar.

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
 
97
}
 
98
 
 
99
.trow {
 
100
    display: table-row;
 
101
}
 
102
 
 
103
.tcell {
 
104
    display: table-cell;
 
105
}
 
106
 
 
107
.tcell .console_button {
 
108
    /* If the console button is in a cell, don't float */
 
109
    position: static !important;
 
110
}
 
111
 
 
112
#console_inputCell {
 
113
    width: 100%;
 
114
    padding-right: 0.5em;
95
115
}
96
116
 
97
117
#console_body.windowpane #console_input {
100
120
}
101
121
#console_prompt {
102
122
    font-family: monospace;
 
123
    white-space: pre;
103
124
}
104
125
#console_inputText {
105
126
    font-family: monospace;
106
 
    width: 75%;
 
127
    width: 100%;
107
128
}
108
129
 
109
130
/* console filler takes up the same space as console_body.windowpane