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

515 by stevenbird
Propagated "problem" -> "exercise" nomenclature change.
1
.exercise {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
2
    background: #b1e2be url(images/signature.png) no-repeat top left;
490 by stevenbird
* new styling to make problem boxes stand out from the text
3
    color: navy;
508 by stevenbird
* fixed indentation of exercise blocks
4
    margin: 0 5% 0 1em;
490 by stevenbird
* new styling to make problem boxes stand out from the text
5
    padding: 0 .5em .5em 25px;
6
    border-left: 1px solid gray;
7
    border-right: 2px solid gray;
8
    border-top: 1px solid gray;
549 by stevenbird
Changed console from reverse video to normal (white background, black
9
    border-bottom: 2px solid gray;
1099.5.5 by William Grant
Shave off the corners of some worksheet boxes (notes, exercises).
10
    -moz-border-radius: 10px;
1509 by William Grant
Add a normal border-radius directive to exercises, so WebKit gets curved corners too.
11
    border-radius: 10px;
291 by mattgiuca
tutorial: Added code to handle top-level menu and subject menu (reads dir
12
}
297 by mattgiuca
tutorial: Now presents problems correctly, by parsing XML source and writing
13
515 by stevenbird
Propagated "problem" -> "exercise" nomenclature change.
14
.exercisebox, .runoutput {
490 by stevenbird
* new styling to make problem boxes stand out from the text
15
    width: 80%;
718 by mattgiuca
Tutorial: Minor fixes wrt addition of reset button.
16
    margin-bottom: 1.5em;
307 by mattgiuca
tutorial: Now each problem div has an ID. Added submit buttons which call
17
}
18
515 by stevenbird
Propagated "problem" -> "exercise" nomenclature change.
19
.exercisebuttons {
307 by mattgiuca
tutorial: Now each problem div has an ID. Added submit buttons which call
20
    text-align: right;
297 by mattgiuca
tutorial: Now presents problems correctly, by parsing XML source and writing
21
}
312 by mattgiuca
Full client-side testing - functional.
22
23
/* Test case outputs are shown as a bulleted list, with these icons as the
24
 * bullets. */
25
518 by stevenbird
Cleaned up display of test results:
26
li.check {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
27
    list-style: url(images/check.png);
518 by stevenbird
Cleaned up display of test results:
28
}
29
li.cross {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
30
    list-style: url(images/cross.png);
518 by stevenbird
Cleaned up display of test results:
31
}
312 by mattgiuca
Full client-side testing - functional.
32
li.pass {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
33
    list-style: url(images/pass.png);
312 by mattgiuca
Full client-side testing - functional.
34
}
35
li.fail {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
36
    list-style: url(images/fail.png);
312 by mattgiuca
Full client-side testing - functional.
37
}
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
38
li.semifail {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
39
    list-style: url(images/semifail.png);
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
40
}
312 by mattgiuca
Full client-side testing - functional.
41
li.exception {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
42
    list-style: url(images/exception.png);
312 by mattgiuca
Full client-side testing - functional.
43
}
378 by stevenbird
www/dispatch/request.py:
44
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
45
li.complete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
46
    list-style: url(images/pass.png);
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
47
}
48
li.incomplete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
49
    list-style: url(images/incomplete.png);
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
50
}
730 by mattgiuca
Added per-worksheet and per-subject score calculation.
51
li.semicomplete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
52
    list-style: url(images/semifail.png);
730 by mattgiuca
Added per-worksheet and per-subject score calculation.
53
}
690 by mattgiuca
tutorial: Added new balls (orange and grey) for new tutorial features.
54
710 by mattgiuca
Tutorial: The tutorial system now presents a table of contents at the top.
55
#tutorial-toc li.complete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
56
    list-style: url(images/tiny/complete.png);
710 by mattgiuca
Tutorial: The tutorial system now presents a table of contents at the top.
57
    margin-left: 1.5em;
58
}
59
#tutorial-toc li.incomplete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
60
    list-style: url(images/tiny/incomplete.png);
710 by mattgiuca
Tutorial: The tutorial system now presents a table of contents at the top.
61
    margin-left: 1.5em;
62
}
730 by mattgiuca
Added per-worksheet and per-subject score calculation.
63
#tutorial-toc li.semicomplete {
1099.1.64 by William Grant
Move ivle.webapp.tutorial's media to the new framework. This also fixes the
64
    list-style: url(images/tiny/semicomplete.png);
730 by mattgiuca
Added per-worksheet and per-subject score calculation.
65
    margin-left: 1.5em;
66
}
710 by mattgiuca
Tutorial: The tutorial system now presents a table of contents at the top.
67
1026 by mattgiuca
CSS: Fixed up 'a' elements as follows:
68
h1 a, h2 a {
69
    color: black;
70
    text-decoration: none;
71
    cursor: default;
72
}
73
h1 a:hover, h2 a:hover {
74
    color: black;
75
    text-decoration: none;
76
    cursor: default;
77
}
78
1027 by mattgiuca
Tutorial: Added new feature - previous attempt viewing. Allows users to see
79
.attempthistory h3 {
80
    font-size: 1em;
81
    color: black;
82
}
83
/* Drop-down box */
84
.attempthistory select {
85
    width: 20em;
86
}
87