~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-12-10 01:18:36 UTC
  • Revision ID: coles.david@gmail.com-20091210011836-6kk2omcmr9hvphj0
Correct documentation's system diagram (console communication goes via Application Slaves)

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    /*height: 20em;*/       /* Might be needed for windowpane mode */
51
51
    /*margin-bottom: 0.5em;*/
52
52
    position: absolute;
53
 
    /* 2em is to accomodate the header bar, and some padding */
54
 
    top: 3.4em;
 
53
    /* Start immediately under the blue header. */
 
54
    top: 0;
55
55
    /* 2.5em is to accomodate the input bar, and padding either side */
56
56
    bottom: 2.5em;
57
57
    left: 0;
84
84
#console_body.windowpane.maximal, #console_body.windowpane #console_heading {
85
85
    -moz-border-radius-topleft: 10px;
86
86
    -moz-border-radius-topright: 10px;
 
87
    -webkit-border-top-left-radius: 10px;
 
88
    -webkit-border-top-right-radius: 10px;
 
89
    border-top-left-radius: 10px;
 
90
    border-top-right-radius: 10px;
87
91
}
88
92
 
89
93
#console_input {
90
94
    position: absolute;
91
95
    /* Input bar goes along the bottom. Pad all sides */
92
 
    left: 0.5em;
93
 
    right: 0.5em;
94
96
    bottom: 0.5em;
 
97
    padding: 0 0.5em;
 
98
    /* Treat console line as table formatted, so the textbox is dynamic in size. */
 
99
    display: table;
 
100
    font-size: 13px;
 
101
}
 
102
 
 
103
#console_input > div {
 
104
    display: table-row;
 
105
}
 
106
 
 
107
#console_input > div > * {
 
108
    display: table-cell;
 
109
 
 
110
    /* Don't let the buttons wrap onto multiple lines.
 
111
     * This forces the textbox to shrink.
 
112
     */
 
113
    white-space: nowrap;
 
114
}
 
115
 
 
116
#console_input > div > .console_button {
 
117
    /* If the console button is in a cell, don't float */
 
118
    position: static !important;
 
119
    padding: 0 0.2em;
 
120
}
 
121
 
 
122
#console_inputCell {
 
123
    width: 100%;
 
124
    padding-right: 0.5em;
95
125
}
96
126
 
97
127
#console_body.windowpane #console_input {
100
130
}
101
131
#console_prompt {
102
132
    font-family: monospace;
 
133
    font-weight: bold;
 
134
    white-space: pre;
103
135
}
104
136
#console_inputText {
105
137
    font-family: monospace;
106
 
    width: 75%;
 
138
    width: 100%;
107
139
}
108
140
 
109
141
/* console filler takes up the same space as console_body.windowpane