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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-01-11 07:39:40 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:186
Added a bit of "chrome" (some CSS styling and minor touching up of the HTML).
In particular, the main header has been moved around a bit, with the "hello"
message and tabs moved to the right, and the tabs converted from a bullet list
to actual tabs.

dispatch: html, login: Minor changes to HTML layout.
ivle.css: Wrote a few styles to change the appearance of the whole program.
browser.css: A few styles were removed from here and brought into the main css
file. Minor changes to be compatible with ivle.css.

browser: Removed all the sample content (which in actuality will be generated
by JavaScript).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#console_body {
2
 
    background-color: white;
3
 
    position: absolute;
4
 
    color: black;
5
 
    padding: 0;
6
 
    width: 100%;
7
 
    top: 0;
8
 
    bottom: 0;
9
 
}
10
 
/* console_body when displayed as a window panel and not the whole app */
11
 
#console_body.windowpane {
12
 
    position: fixed;
13
 
    top: auto;      /* Do not fix to top */
14
 
    bottom: 0;
15
 
    left: 0;
16
 
    right: 0;
17
 
    z-index: 1;     /* Go in front of console_filler */
18
 
}
19
 
#console_body.windowpane.minimal {
20
 
    border-top: 1px solid black;
21
 
}
22
 
#console_body.windowpane #console_body2 {
23
 
    /* Need some padding in windowpane mode */
24
 
    /* (In full mode, things are positioned absolutely) */
25
 
    padding: 0.2em;
26
 
}
27
 
/* Heading bar */
28
 
#console_heading {
29
 
    background-color: gray;
30
 
    border: 2px solid black;
31
 
    padding: 2px;
32
 
    color: black;
33
 
    font-family: monospace;
34
 
    font-weight: bold;
35
 
}
36
 
/* If "minimized", console_heading and console_output are hidden */
37
 
#console_body.minimal #console_heading,
38
 
#console_body.minimal #console_output,
39
 
/* If "maximized", the maximize button is hidden */
40
 
#console_body.maximal .maximize {
41
 
    display: none;
42
 
}
43
 
/* Minimize/maximize button */
44
 
.console_button {
45
 
    cursor: pointer;    /* Display hand cursor, since this is a button */
46
 
    position: absolute;
47
 
    right: 0.5em;
48
 
}
49
 
#console_output {
50
 
    /*height: 20em;*/       /* Might be needed for windowpane mode */
51
 
    /*margin-bottom: 0.5em;*/
52
 
    position: absolute;
53
 
    /* 2em is to accomodate the header bar, and some padding */
54
 
    top: 2em;
55
 
    /* 2.5em is to accomodate the input bar, and padding either side */
56
 
    bottom: 2.5em;
57
 
    /* left and right 0.5em are just for horizontal padding */
58
 
    left: 0.5em;
59
 
    right: 0.5em;
60
 
    /* Display scroll bars */
61
 
    overflow: scroll;
62
 
    /* Some browsers support overflow-x and overflow-y. In this case, use
63
 
     * overflow-x: auto to disable the horizontal scroll bar.
64
 
     * (If unsupported this will simply fall back to a harmless but annoying
65
 
     * horizontal scroll bar).
66
 
     */
67
 
    overflow-x: auto;
68
 
}
69
 
#console_body.windowpane #console_output {
70
 
    /* Don't want this absolutely positioned in windowpane mode */
71
 
    position: static;
72
 
    /* Give it an explicit height instead */
73
 
    height: 15em;
74
 
    margin-bottom: 0.5em;
75
 
}
76
 
 
77
 
#console_body.windowpane.maximal, #console_body.windowpane #console_heading {
78
 
    -moz-border-radius-topleft: 10px;
79
 
    -moz-border-radius-topright: 10px;
80
 
}
81
 
 
82
 
#console_input {
83
 
    position: absolute;
84
 
    /* Input bar goes along the bottom. Pad all sides */
85
 
    left: 0.5em;
86
 
    right: 0.5em;
87
 
    bottom: 0.5em;
88
 
}
89
 
 
90
 
#console_body.windowpane #console_input {
91
 
    /* Don't want this absolutely positioned in windowpane mode */
92
 
    position: static;
93
 
}
94
 
#console_prompt {
95
 
    font-family: monospace;
96
 
}
97
 
#console_inputText {
98
 
    font-family: monospace;
99
 
    width: 75%;
100
 
}
101
 
 
102
 
/* console filler takes up the same space as console_body.windowpane
103
 
 * but its position is relative, not fixed.
104
 
 * This avoids having the console overlap with the bottom 28em of page
105
 
 * content.
106
 
 * It has two classes. "windowpane" turns it on. "minimal" or "maximal"
107
 
 * control its height.
108
 
 */
109
 
#console_filler {
110
 
    display: none;
111
 
}
112
 
#console_filler.windowpane {
113
 
    display: block;
114
 
    z-index: -1;        /* Go behind the actual console */
115
 
    width: 100%;
116
 
    position: relative;
117
 
    bottom: 0;
118
 
    left: 0;
119
 
    right: 0;
120
 
}
121
 
#console_filler.maximal {
122
 
    /* Trial and error is useful to work this out. */
123
 
    height: 14em;
124
 
}
125
 
#console_filler.minimal {
126
 
    /* Trial and error is useful to work this out. */
127
 
    height: 1em;
128
 
}
129
 
*.errorMsg {
130
 
    color: red;
131
 
    margin-top: 0em;
132
 
    margin-bottom: 0em;
133
 
}
134
 
*.inputPrompt {
135
 
    color: #800;    /* Deep red */
136
 
    font-weight: bold;
137
 
    margin-top: 0em;
138
 
    margin-bottom: 0em;
139
 
}
140
 
*.inputMsg {
141
 
    color: #404040;
142
 
    margin-top: 0em;
143
 
    margin-bottom: 0em;
144
 
}
145
 
*.outputMsg {
146
 
    margin-top: 0em;
147
 
    margin-bottom: 0em;
148
 
}