~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-04-28 05:06:00 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428050600-hogd9d6wo7ksyqy8
ivle.database.get_store() now takes a configuration object.

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
 
    /* Start immediately under the blue header. */
54
 
    top: 0;
 
53
    /* 2em is to accomodate the header bar, and some padding */
 
54
    top: 3.4em;
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;
91
87
}
92
88
 
93
89
#console_input {
94
90
    position: absolute;
95
91
    /* Input bar goes along the bottom. Pad all sides */
 
92
    left: 0.5em;
 
93
    right: 0.5em;
96
94
    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;
125
95
}
126
96
 
127
97
#console_body.windowpane #console_input {
130
100
}
131
101
#console_prompt {
132
102
    font-family: monospace;
133
 
    font-weight: bold;
134
 
    white-space: pre;
135
103
}
136
104
#console_inputText {
137
105
    font-family: monospace;
138
 
    width: 100%;
 
106
    width: 75%;
139
107
}
140
108
 
141
109
/* console filler takes up the same space as console_body.windowpane