ae370141 |
1 | /******************************************************************* |
2 | styles_color.css |
3 | |
4 | This CSS file contains all color definitions like background-color, |
5 | font-color, border-color etc. |
6 | |
7 | Styles are organised into the following sections: |
8 | |
9 | core |
10 | header |
11 | footer |
12 | |
13 | admin |
14 | blocks |
15 | calendar |
16 | course |
17 | doc |
18 | login |
19 | message |
20 | tabs |
21 | user |
22 | |
23 | modules |
24 | assignment |
25 | chat |
26 | choice |
27 | forum |
28 | glossary |
29 | journal |
30 | label |
31 | lesson |
32 | quiz |
33 | resource |
34 | scorm |
35 | survey |
36 | wiki |
37 | workshop |
38 | |
39 | *******************************************************************/ |
40 | |
41 | |
42 | /******************************************************************* |
43 | *** Core |
44 | *******************************************************************/ |
2ea70bbe |
45 | |
46 | /* basic styles */ |
47 | a:link, |
48 | a:visited { |
49 | color:#0000FF; |
50 | } |
51 | |
52 | a.dimmed:link, |
53 | a.dimmed:visited { |
ae370141 |
54 | color:#AAAAAA; |
2ea70bbe |
55 | } |
56 | |
54e03195 |
57 | a:hover { |
2ea70bbe |
58 | color:#FF0000; |
59 | } |
60 | |
c1c6692f |
61 | a.autolink:link, |
62 | a.autolink:visited { |
63 | color:#000000; |
64 | background: #DDDDDD; |
65 | } |
66 | |
67 | a.autolink.glossary:hover { |
54e03195 |
68 | cursor: help; |
69 | } |
70 | |
2ea70bbe |
71 | /* general styles */ |
72 | body { |
73 | background-color:#AAAAFF; |
74 | color:#000066; |
75 | } |
76 | |
3e5c0cf0 |
77 | th.header, |
78 | td.header { |
2ea70bbe |
79 | background-color:#DDDDDD; |
80 | } |
81 | |
82 | .highlight { |
83 | background-color:#AAFFAA; /* highlight */ |
84 | } |
85 | |
86 | .highlight2 { |
87 | color:#AA0000; /* highlight missing terms in forum search */ |
88 | } |
89 | |
90 | /* Alternate rows even */ |
91 | .r0 { |
92 | } |
93 | |
94 | /* Alternate rows odd */ |
95 | .r1 { |
96 | } |
97 | |
98 | /* notification messages (can be good or bad) */ |
99 | .notifyproblem { |
100 | color:#660000; |
101 | padding: 10px; |
102 | text-align: center; |
103 | } |
104 | |
105 | .notifysuccess { |
106 | color:#006600; |
107 | padding: 10px; |
108 | text-align:center; |
109 | } |
110 | |
111 | .required { |
112 | background-color:#DDDDDD; |
113 | } |
114 | |
2ea70bbe |
115 | /* many places */ |
116 | .generalbox { |
1384c752 |
117 | border-color:#9999FF; /* borders */ |
2ea70bbe |
118 | } |
119 | .informationbox { |
1384c752 |
120 | border-color:#9999FF; /* borders */ |
2ea70bbe |
121 | } |
122 | .feedbackbox { |
ae370141 |
123 | border-color: #888888; /* borders */ |
2ea70bbe |
124 | } |
125 | .feedbackby { |
126 | background-color:#BBBBBB; |
127 | } |
ae370141 |
128 | |
129 | .noticebox { |
130 | border-color:#9999FF; /* borders */ |
131 | } |
132 | |
133 | .errorbox { |
134 | color:#ffffff; |
135 | border-color:#660000; |
136 | background-color:#990000; |
137 | } |
138 | |
139 | /* weblib.php table */ |
140 | .tabledivider { |
141 | border-color:#9999FF; /* borders */ |
142 | } |
143 | |
144 | /* entry-page index.php */ |
145 | .sitetopic { |
146 | background-color:#FFFFFF; /* cellheading */ |
147 | border-color:#9999FF; /* borders */ |
148 | } |
149 | |
150 | .dimmed_text { |
151 | color:#AAAAAA; |
152 | } |
153 | |
154 | .teacheronly { |
155 | color:#990000; |
156 | } |
157 | |
158 | .unread { |
159 | background: #FFD991; |
160 | } |
161 | |
162 | .censoredtext { |
163 | color:#000000; |
164 | background:#000000; |
165 | } |
166 | |
167 | |
168 | /* kept for backward compatibility with some non-standard modules |
169 | which use these classes for various things */ |
170 | .generaltab, .generaltabinactive { |
171 | background-color:#BBBBBB; |
172 | |
2ea70bbe |
173 | } |
ae370141 |
174 | .generaltabselected { |
175 | background-color:#DDDDDD; |
176 | } |
177 | .generaltabinactive { |
178 | color:#CCCCCC; |
179 | } |
180 | |
181 | |
182 | |
183 | /******************************************************************* |
184 | *** Header |
185 | *******************************************************************/ |
186 | |
187 | /******************************************************************* |
188 | *** Footer |
189 | *******************************************************************/ |
190 | |
191 | /******************************************************************* |
192 | *** Admin |
193 | *******************************************************************/ |
2ea70bbe |
194 | |
195 | .admin .generalboxcontent { |
196 | background-color:#EEEEEE; |
197 | } |
198 | .admin .generalbox { |
199 | border-color:#BBBBBB; |
200 | } |
201 | |
202 | .admin .informationbox { |
203 | border-color:#BBBBBB; |
204 | background-color:#FFFFFF; |
205 | } |
206 | |
ae370141 |
207 | |
208 | /******************************************************************* |
209 | *** Blocks |
210 | *******************************************************************/ |
211 | |
212 | .rssclientlink { |
213 | border-top-color:#DDDDDD; |
214 | } |
215 | |
216 | .rssclientdescription { |
217 | color:#555555; |
218 | } |
219 | |
220 | .sideblock { |
1384c752 |
221 | border-color:#9999FF; /* borders */ |
2ea70bbe |
222 | } |
223 | |
ae370141 |
224 | .sideblock .header { |
2ea70bbe |
225 | } |
226 | |
ae370141 |
227 | .sideblock .content { |
228 | background-color:#FCFCFC; |
81874f62 |
229 | } |
230 | |
ae370141 |
231 | .sideblock .content hr { |
232 | border-top-color:#999999; |
2ea70bbe |
233 | } |
234 | |
ae370141 |
235 | .sideblock .list { |
236 | } |
2ea70bbe |
237 | |
ae370141 |
238 | |
239 | |
240 | /******************************************************************* |
241 | *** Calendar |
242 | *******************************************************************/ |
243 | |
244 | #calendar .maincalendar, |
245 | #calendar .sidecalendar |
246 | { |
247 | border-color: #DDDDDD; |
2ea70bbe |
248 | } |
249 | |
ae370141 |
250 | #calendar .maincalendar table.calendarmonth th { |
251 | border-color: #000000; |
252 | } |
2ea70bbe |
253 | |
ae370141 |
254 | table.minicalendar { |
255 | border-color:#9999FF; |
256 | } |
257 | |
258 | #calendar .maincalendar .eventlist .event { |
259 | border-color:#9999FF; |
260 | } |
261 | |
262 | #calendar .maincalendar .eventlist .event .topic, |
263 | #calendar .maincalendar .eventlist .event .picture, |
264 | #calendar .maincalendar .eventlist .event .side |
265 | { |
266 | background-color:#EEEEEE; |
267 | } |
268 | |
269 | #calendar .maincalendar table.calendarmonth ul.events-underway { |
270 | color:#999999; |
271 | } |
272 | |
273 | #calendar .event_global, |
274 | .minicalendar .event_global, |
275 | .block_calendar_month .event_global { |
276 | border-color:#2EBA0E !important; |
277 | background-color:#2EBA0E; |
278 | } |
279 | |
280 | #calendar .event_course, |
281 | .minicalendar .event_course, |
282 | .block_calendar_month .event_course { |
283 | border-color:#FF9966 !important; |
284 | background-color:#FF9966; |
285 | } |
286 | |
287 | #calendar .event_group, |
288 | .minicalendar .event_group, |
289 | .block_calendar_month .event_group { |
290 | border-color:#FBBB23 !important; |
291 | background-color:#FBBB23; |
292 | } |
293 | |
294 | #calendar .event_user, |
295 | .minicalendar .event_user, |
296 | .block_calendar_month .event_user { |
297 | border-color:#A1BECB !important; |
298 | background-color:#A1BECB; |
2ea70bbe |
299 | } |
300 | |
ae370141 |
301 | #calendar .duration_global, |
302 | .minicalendar .duration_global { |
303 | border-top-color:#2EBA0E !important; |
304 | border-bottom-color:#2EBA0E !important; |
305 | } |
2ea70bbe |
306 | |
ae370141 |
307 | #calendar .duration_course, |
308 | .minicalendar .duration_course { |
309 | border-top-color:#FF9966 !important; |
310 | border-bottom-color:#FF9966 !important; |
311 | } |
312 | |
313 | #calendar .duration_group, |
314 | .minicalendar .duration_group { |
315 | border-top-color:#FBBB23 !important; |
316 | border-bottom-color:#FBBB23 !important; |
317 | } |
318 | |
319 | #calendar .duration_user, |
320 | .minicalendar .duration_user { |
321 | border-top-color:#A1BECB !important; |
322 | border-bottom-color:#A1BECB !important; |
323 | } |
324 | |
325 | #calendar .weekend, |
326 | .minicalendar .weekend { |
327 | color:#FF0000; |
328 | } |
329 | |
330 | #calendar .today, |
331 | .minicalendar .today { |
332 | border-color:#000000 !important; |
333 | } |
334 | |
335 | .cal_popup_fg { |
336 | background-color:#FFFFFF; /* cellcontent */ |
337 | } |
338 | |
339 | .cal_popup_bg { |
340 | border-color:#000000; |
341 | background-color:#FFFFFF; |
342 | } |
343 | |
344 | |
345 | /******************************************************************* |
2ea70bbe |
346 | *** Course |
ae370141 |
347 | *******************************************************************/ |
348 | |
2ea70bbe |
349 | /* course, entry-page, login */ |
350 | .headingblock { |
1384c752 |
351 | border-color:#9999FF; /* borders */ |
2ea70bbe |
352 | } |
353 | |
2ea70bbe |
354 | /* course */ |
355 | .headingblock .outline { |
1384c752 |
356 | border-color:#9999FF; /* borders */ |
2ea70bbe |
357 | } |
358 | |
359 | #course-view .section td { |
ae370141 |
360 | border-color:#9999FF; |
2ea70bbe |
361 | } |
362 | |
363 | #course-view .section .content { |
364 | } |
365 | |
366 | #course-view .section .side { |
367 | background: #EEEEEE; |
368 | } |
369 | |
370 | #course-view .section .left { |
371 | } |
372 | |
373 | #course-view .section .right { |
374 | } |
375 | |
376 | #course-view .current .side{ |
377 | background: #FFD991; |
378 | } |
379 | |
380 | #course-view .topics { |
381 | } |
382 | |
383 | #course-view .weeks { |
384 | } |
385 | |
386 | #course-view .section .spacer { |
387 | } |
388 | |
389 | #course-view .section .weekdates { |
e214cf5a |
390 | color:#FFFFFF; |
2ea70bbe |
391 | } |
392 | |
393 | .categoryboxcontent, |
394 | .courseboxcontent { |
1384c752 |
395 | border-color:#9999FF; /* borders */ |
2ea70bbe |
396 | background: #FFFFFF; |
397 | } |
398 | |
399 | |
ae370141 |
400 | /******************************************************************* |
401 | *** Doc |
402 | *******************************************************************/ |
2ea70bbe |
403 | |
ae370141 |
404 | /******************************************************************* |
405 | *** Login |
406 | *******************************************************************/ |
407 | |
408 | .loginbox .content { |
409 | border-color:#9999FF; /* borders */ |
2ea70bbe |
410 | } |
411 | |
412 | |
ae370141 |
413 | /******************************************************************* |
414 | *** Message |
415 | *******************************************************************/ |
2ea70bbe |
416 | |
ae370141 |
417 | table.message_search_results td { |
1384c752 |
418 | border-color:#9999FF; /* borders */ |
2ea70bbe |
419 | } |
420 | |
ae370141 |
421 | .message .author { |
422 | color: #999999; |
2ea70bbe |
423 | } |
424 | |
ae370141 |
425 | .message .time { |
426 | color: #999999; |
2ea70bbe |
427 | } |
428 | |
ae370141 |
429 | .message .content { |
2ea70bbe |
430 | } |
431 | |
ae370141 |
432 | |
433 | /******************************************************************* |
434 | *** Tabs |
435 | *******************************************************************/ |
436 | |
437 | .tablink a:link, |
438 | .tablink a:visited { |
439 | color:#000066; |
2ea70bbe |
440 | } |
441 | |
ae370141 |
442 | .tablink a:hover { |
443 | text-decoration: none; |
2ea70bbe |
444 | } |
445 | |
ae370141 |
446 | .selected .tablink a:link, |
447 | .selected .tablink a:visited { |
448 | color:#000000; |
2ea70bbe |
449 | } |
450 | |
451 | |
ae370141 |
452 | /******************************************************************* |
453 | *** User |
454 | *******************************************************************/ |
455 | |
456 | .userpicture { |
457 | background:#EEEEEE; |
2ea70bbe |
458 | } |
ae370141 |
459 | |
460 | .userinfobox { |
461 | border-color: #DDDDDD; |
462 | background-color: #F7F7F7; |
2ea70bbe |
463 | } |
2c28addd |
464 | .groupinfobox { |
465 | border-color: #DDDDDD; |
466 | background-color: #FCFCFC; |
467 | } |
2ea70bbe |
468 | |
469 | |
ae370141 |
470 | /******************************************************************* |
471 | *** Modules: Assignment |
472 | *******************************************************************/ |
473 | |
2ea70bbe |
474 | .assignmentsubmission { |
475 | } |
476 | |
477 | .assignmentnew .assignmentfeedback{ |
478 | background-color:#DDDDDD; /* cellheading2 */ |
479 | } |
480 | |
481 | .assignmentold .assignmentfeedback{ |
482 | background-color:#BBBBBB; /* cellheading */ |
483 | } |
484 | |
485 | .assignmentheading { |
486 | background-color:#BBBBBB; /* cellheading */ |
487 | } |
488 | |
489 | |
ae370141 |
490 | /******************************************************************* |
491 | *** Modules: Chat |
492 | *******************************************************************/ |
2ea70bbe |
493 | |
ae370141 |
494 | /******************************************************************* |
495 | *** Modules: Choice |
496 | *******************************************************************/ |
2ea70bbe |
497 | |
ae370141 |
498 | /******************************************************************* |
499 | *** Modules: Forum |
500 | *******************************************************************/ |
2ea70bbe |
501 | |
ae370141 |
502 | .forumheaderlist, |
503 | .forumpost { |
504 | border-color:#9999FF; /* borders */ |
9ac6ae72 |
505 | } |
506 | |
ae370141 |
507 | .forumpost .content { |
508 | background: #FFFFFF; |
9ac6ae72 |
509 | } |
510 | |
ae370141 |
511 | .forumpost .left { |
512 | background:#EEEEEE; |
54e03195 |
513 | } |
514 | |
ae370141 |
515 | .forumpost .topic { |
516 | border-style:solid; /* borders */ |
517 | border-width: 0px; |
518 | border-bottom-color: #EEEEEE; |
519 | border-bottom-width: 1px; |
54e03195 |
520 | } |
521 | |
ae370141 |
522 | .forumpost .starter { |
523 | background:#DDDDDD; |
54e03195 |
524 | } |
525 | |
ae370141 |
526 | .forumheaderlist .discussion .starter { |
527 | background:#DDDDDD; |
2ea70bbe |
528 | } |
529 | |
ae370141 |
530 | .forumheaderlist td { |
531 | border-color: #FFFFFF; |
2ea70bbe |
532 | } |
533 | |
9ac6ae72 |
534 | .sideblock .post .head { |
2ea70bbe |
535 | color:#555555; |
536 | } |
537 | |
538 | .forumthread .unread { |
539 | background: #FFD991; |
540 | } |
541 | |
2ea70bbe |
542 | #mod-forum-view .unread { |
543 | padding-left: 3px; |
544 | padding-right: 3px; |
545 | } |
546 | |
547 | #mod-forum-discuss .forumpost { |
548 | background: none; |
549 | } |
550 | |
551 | #mod-forum-discuss .unread .forumpostmessage { |
552 | border-style: solid; |
553 | border-color: #FFD991; |
554 | border-width: 2px; |
555 | } |
556 | |
557 | #mod-forum-discuss .forumthread .unread { |
558 | } |
559 | |
560 | #mod-forum-index .unread { |
561 | } |
562 | |
2ea70bbe |
563 | |
ae370141 |
564 | /******************************************************************* |
565 | *** Modules: Glossary |
566 | *******************************************************************/ |
2ea70bbe |
567 | |
ae370141 |
568 | .entryboxheader { |
569 | border-color: #BBBBBB; |
2ea70bbe |
570 | } |
571 | |
ae370141 |
572 | .entrybox { |
573 | border-color: #BBBBBB; |
2ea70bbe |
574 | } |
575 | |
ae370141 |
576 | .entry { |
2ea70bbe |
577 | } |
578 | |
ae370141 |
579 | .glossarypost { |
580 | border-color: #DDDDDD; |
2ea70bbe |
581 | } |
582 | |
ae370141 |
583 | .glossarypost .entryheader, |
584 | .glossarypost .entryapproval, |
585 | .glossarypost .picture, |
586 | .glossarypost .entryattachment, |
587 | .glossarypost .left { |
588 | background-color: #F0F0F0; |
2ea70bbe |
589 | } |
590 | |
ae370141 |
591 | .glossarycomment { |
592 | border-color: #DDDDDD; |
2ea70bbe |
593 | } |
594 | |
ae370141 |
595 | .glossarycomment .entryheader, |
596 | .glossarycomment .picture, |
597 | .glossarycomment .left { |
598 | background-color: #F0F0F0; |
2ea70bbe |
599 | |
2ea70bbe |
600 | } |
601 | |
ae370141 |
602 | #mod-glossary-report .generalbox .teacher { |
603 | background: #F0F0F0; |
2ea70bbe |
604 | } |
605 | |
ae370141 |
606 | .categoryheader { |
607 | background-color: #dddddd; |
2ea70bbe |
608 | } |
609 | |
ae370141 |
610 | .glossaryformatheader { |
611 | background-color: #dddddd; |
2ea70bbe |
612 | } |
613 | |
2ea70bbe |
614 | |
ae370141 |
615 | /******************************************************************* |
616 | *** Modules: Journal |
617 | *******************************************************************/ |
2ea70bbe |
618 | |
ae370141 |
619 | /******************************************************************* |
620 | *** Modules: Label |
621 | *******************************************************************/ |
2ea70bbe |
622 | |
ae370141 |
623 | /******************************************************************* |
624 | *** Modules: Lesson |
625 | *******************************************************************/ |
2ea70bbe |
626 | |
ae370141 |
627 | /******************************************************************* |
628 | *** Modules: Quiz |
629 | *******************************************************************/ |
2ea70bbe |
630 | |
ae370141 |
631 | body#mod-quiz-report table#attempts td { |
632 | border-color: #dddddd; |
2ea70bbe |
633 | } |
ae370141 |
634 | body#mod-quiz-report table#attempts .r1 { |
635 | background-color: #eeeeee; |
2ea70bbe |
636 | } |
637 | |
638 | |
ae370141 |
639 | /******************************************************************* |
640 | *** Modules: Resource |
641 | *******************************************************************/ |
2ea70bbe |
642 | |
ae370141 |
643 | /******************************************************************* |
644 | *** Modules: Scorm |
645 | *******************************************************************/ |
2ea70bbe |
646 | |
ae370141 |
647 | /******************************************************************* |
648 | *** Modules: Survey |
649 | *******************************************************************/ |
2ea70bbe |
650 | |
ae370141 |
651 | #mod-survey-view .r0 { |
652 | background-color: #EEEEEE; |
2ea70bbe |
653 | } |
ae370141 |
654 | #mod-survey-view .r1 { |
655 | background-color: #DDDDDD; |
2ea70bbe |
656 | } |
657 | |
2ea70bbe |
658 | |
ae370141 |
659 | /******************************************************************* |
660 | *** Modules: Wiki |
661 | *******************************************************************/ |
24bba839 |
662 | |
ae370141 |
663 | /******************************************************************* |
664 | *** Modules: Workshop |
665 | *******************************************************************/ |
24bba839 |
666 | |
ae370141 |
667 | .workshoppostpicture { |
668 | background-color:#FEE6B9; /* cellcontent2 */ |
2ea70bbe |
669 | } |
670 | |
ae370141 |
671 | .workshopassessmentheading { |
672 | background-color:#DDDDDD; /* cellheading2 */ |
2ea70bbe |
673 | } |
674 | |
24bba839 |
675 | |
ae370141 |
676 | |