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

« back to all changes in this revision

Viewing changes to www/media/common/ivle.css

  • Committer: me at id
  • Date: 2009-01-15 01:29:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1147
ivle.makeuser: Don't create a local.auth. It wasn't used anywhere, and seems
    to have only been there for historical reasons.
setup.configure: Remove svn_auth_local from the config.py boilerplate; it was
    used solely by ivle.makeuser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    color: #a00;
30
30
}
31
31
 
32
 
a img {
33
 
    border: none;
34
 
}
35
 
 
36
 
h1 {
37
 
    margin: 0;
38
 
    padding: 0.5em 0 0 0.5em;
39
 
    font-size: x-large;
40
 
    font-weight: normal;
41
 
}
42
 
 
43
 
h2 {
44
 
    font-size: larger;
45
 
    font-weight: normal;
46
 
}
47
 
 
48
32
/** Special styles for header section **/
49
33
 
50
34
#ivleheader {
51
35
    position: absolute;
52
 
    background-color: #abf;
53
 
    background-image: url(../ivle.webapp.core/images/chrome/topbar-slashes.png);
54
 
    background-repeat: repeat-x;
 
36
    background-color: #fea;
55
37
    padding: 0;
56
38
    border-bottom: 1px solid black;
57
 
    /* IMPORTANT: This 2em is hard-coded elsewhere in this file. Search for
 
39
    /* IMPORTANT: This 5.3em is hard-coded elsewhere in this file. Search for
58
40
     * #ivleheader.height to update it. */
59
 
    height: 2em;
 
41
    height: 5.3em;
60
42
    left: 0;
61
43
    right: 0;
62
44
    z-index: 1;     /* Background to all, but the body */
63
45
}
64
46
 
65
 
/* Now we have lots of breadcrumb styles.
66
 
   The breadcrumbs are <li>s in a <ul>. Each <li> has either an <a> or
67
 
   a <span> inside it, with the label of the breadcrumb. <li>s may also
68
 
   have an <ul> inside them, which is a menu that pops up on hover.
69
 
 */
70
 
ul#ivle_breadcrumbs {
71
 
    margin: 0;
72
 
    padding: 0;
73
 
    list-style-type: none;
74
 
}
75
 
 
76
 
ul#ivle_breadcrumbs > li {
77
 
    background: url(../ivle.webapp.core/images/chrome/breadcrumb-chevron.png) scroll no-repeat right;
78
 
    float: left;
79
 
    min-height: 29px;
80
 
    margin-right: 4px;
81
 
    position: relative;
82
 
}
83
 
 
84
 
ul#ivle_breadcrumbs > li > a {
85
 
    display: block;
86
 
    line-height: 2em;
87
 
    padding-right: 16px;
88
 
    vertical-align: middle;
89
 
    text-decoration: none;
90
 
    color: black;
91
 
}
92
 
 
93
 
ul#ivle_breadcrumbs > li > a > img {
94
 
    vertical-align: middle;
95
 
}
96
 
 
97
 
/* There is no breadcrumb to the left of the first one, so there is no margin.
98
 
   We add a special one. */
99
 
ul#ivle_breadcrumbs > li:first-child > a {
100
 
    padding-left: 6px;
101
 
}
102
 
 
103
 
ul#ivle_breadcrumbs > li > span {
104
 
    display: block;
105
 
    line-height: 2em;
106
 
    padding-right: 16px;
107
 
    vertical-align: middle;
108
 
}
109
 
 
110
 
ul#ivle_breadcrumbs > li > a:hover {
111
 
    text-decoration: underline;
112
 
}
113
 
 
114
 
ul#ivle_breadcrumbs > li > ul {
115
 
    display: none;
116
 
    list-style-type: none;
117
 
 
118
 
    position: absolute;
119
 
    padding-left: 0;
120
 
    top: 2em;
121
 
    left: -21px; /* Just meets the chevron on the left. */
122
 
    width: 200px;
123
 
 
124
 
    background: #abf;
125
 
    border: 1px solid #dee4ff;
126
 
    opacity: 0.95;
127
 
}
128
 
 
129
 
ul#ivle_breadcrumbs > li:first-child > ul {
130
 
    left: 0; /* Don't want the IVLE menu to run off the LHS. */
131
 
}
132
 
 
133
 
ul#ivle_breadcrumbs > li:hover > ul {
134
 
    display: block;
135
 
}
136
 
 
137
 
ul#ivle_breadcrumbs > li > ul > li {
138
 
    padding: 0.3em;
139
 
}
140
 
 
141
 
/* The IVLE crumb's menu items are extra high, with icons. */
142
 
ul#ivle_breadcrumbs > li:first-child > ul > li > a {
143
 
    min-height: 24px;
144
 
    vertical-align: middle;
145
 
    padding-top: 2px;
146
 
}
147
 
 
148
 
ul#ivle_breadcrumbs > li > ul > li > a {
149
 
    display: block;
150
 
}
151
 
 
152
 
ul#ivle_breadcrumbs > li > ul > li:hover {
153
 
    background: #b8c6ff;
154
 
}
155
 
 
156
 
ul#ivle_breadcrumbs > li.crumbmenu > a {
157
 
    background: url(../ivle.webapp.core/images/chrome/drop-down.png) scroll no-repeat right;
158
 
    margin-right: 10px;
159
 
}
160
 
 
161
47
#ivleheader_text {
 
48
    /* Pad left and right. */
162
49
    position: absolute;
163
 
    top: 0;
 
50
    padding: 0 1em;
 
51
    left: 0;
164
52
    right: 0;
165
 
    padding: 0.5em;
 
53
    z-index: 3;     /* In front */
 
54
}
 
55
 
 
56
/* Special "IVLE" and "Informatics Virtual Learning Environment" titles */
 
57
#ivleheader_text h1 {
 
58
    position: absolute;
 
59
    text-align: left;
 
60
    font-size: 3.8em;
 
61
    font-style: italic;
 
62
    color: #ffc;
 
63
    margin: 0;
 
64
    padding: 0;
 
65
}
 
66
#ivleheader_text h2 {
 
67
    position: absolute;
 
68
    text-align: left;
 
69
    font-size: 1.3em;
 
70
    margin-top: 1em;
 
71
    margin-bottom: 1em;
 
72
    padding: 0;
166
73
}
167
74
 
168
75
/* Note: The body has NO PADDING by default (unlike plain HTML).
174
81
    /* This is positioned absolutely so that its content can be positioned
175
82
     * absolutely as well, and so height: 100% really means it. */
176
83
    position: absolute;
177
 
    top: 2em;               /* == #ivleheader.height */
 
84
    top: 5.3em;             /* == #ivleheader.height */
178
85
    bottom: 0;
179
86
    width: 100%;
180
87
    z-index: 0;     /* Behind header */
182
89
 
183
90
/* Apps can optionally have a <div id="ivle_padding"> as the outermost
184
91
 * element, if 1em of padding is desired (otherwise there will be no padding).
185
 
 * Note: No top padding, since the first element should have a margins (p or
186
 
 * h2).
187
92
 */
188
93
#ivle_padding {
189
 
    padding: 0 1em 1em 1em;
 
94
    padding: 1em;
190
95
}
191
96
 
192
 
p.userhello {
 
97
.userhello {
193
98
    font-size: .8em;
 
99
    top: 0;
 
100
    text-align: right;
 
101
    padding: 11px 0;
194
102
    margin: 0;
195
103
}
196
104
.userhello .username {
197
105
    font-weight: bold;
198
106
}
199
107
 
 
108
/* The tabs bar is positioned absolutely, unlike the other header content.
 
109
 * This allows it to be aligned exactly with the bottom of the header bar.
 
110
 */
 
111
#ivleheader_tabs {
 
112
    position: absolute;
 
113
    height: 5.3em;          /* == #ivleheader.height */
 
114
    top: 0;
 
115
    left: 0;
 
116
    right: 0;
 
117
    width: 100%;
 
118
    padding: 0;
 
119
    margin: 0;
 
120
    z-index: 2;     /* In front of background, behind text */
 
121
}
 
122
 
 
123
#ivleheader_tabs p {
 
124
    /* This allows for a single paragraph, currently used to display a warning
 
125
     * about Debuginfo */
 
126
    position: absolute;
 
127
    left: 1em;
 
128
    bottom: 0.5em;
 
129
    margin: 0;
 
130
}
 
131
 
 
132
/* The apptabs ul is aligned to the bottom of #ivleheader_tabs */
 
133
ul#apptabs {
 
134
    position: absolute;
 
135
    text-align: right;
 
136
    bottom: 0;
 
137
    right: 1em;             /* == #ivleheader.padding-right */
 
138
    padding: 0;
 
139
    margin: 0;
 
140
}
 
141
ul#apptabs li {
 
142
    display: inline;
 
143
    padding: 3px;
 
144
    border: 1px solid black;
 
145
    background-color: #fc6;
 
146
    padding: 0 3px;
 
147
}
 
148
ul#apptabs li:hover {
 
149
    background-color: #fd8;
 
150
}
 
151
/* Currently active app tab */
 
152
ul#apptabs li.thisapp {
 
153
    background-color: white;
 
154
    border-bottom: 1px solid white;
 
155
}
 
156
 
 
157
ul#apptabs a {
 
158
    color: navy;    /* Text colour not to change */
 
159
    text-decoration: none;
 
160
}
 
161
 
200
162
/* Terms of Service accept / decline buttons */
201
163
#tos_acceptbuttons {
202
164
    text-align: center;
203
165
}
204
 
 
205
 
form.verticalform div {
206
 
    padding: 0.2em 0;
207
 
}
208
 
 
209
 
form.verticalform div label {
210
 
    display: block;
211
 
    float: left;
212
 
    text-align: right;
213
 
    width: 200px;
214
 
    margin-right: 5px;
215
 
    font-weight: bold;
216
 
}
217
 
 
218
 
form.verticalform div.submit input[type=submit] {
219
 
    margin-left: 205px;
220
 
}
221
 
 
222
 
.stackedform div label {
223
 
    font-weight: bold;
224
 
}
225
 
 
226
 
/* Subjects list */
227
 
.subject_current {
228
 
    font-weight: bold;
229
 
}
230
 
 
231
 
.pretty_table {
232
 
  text-align: left;
233
 
  border-collapse: collapse;
234
 
}
235
 
 
236
 
.pretty_table td, .pretty_table th {
237
 
  padding: 0.2em 0.7em;
238
 
  border-bottom: 1px solid #ccc;
239
 
}
240
 
 
241
 
.pretty_table th {
242
 
  border-bottom: 2px solid gray;
243
 
}
244
 
 
245
 
.pretty_table tbody td {
246
 
  color: #444;
247
 
}
248
 
 
249
 
.pretty_table tbody tr:hover {
250
 
  background-color: #efefef;
251
 
}
252
 
 
253
 
.pretty_table td:first-child, .pretty_table th:first-child {
254
 
  padding-left: 0;
255
 
}
256
 
 
257
 
.pretty_table tbody tr:hover td {
258
 
  color: #111;
259
 
}