~ubuntu-branches/ubuntu/jaunty/moodle/jaunty

« back to all changes in this revision

Viewing changes to mod/quiz/styles.php

  • Committer: Bazaar Package Importer
  • Author(s): Jordan Mantha, Matt Oquist
  • Date: 2009-02-25 15:16:22 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090225151622-0ekt1liwhv2obfza
Tags: 1.9.4.dfsg-0ubuntu1
* Merge with Debian git (Closes LP: #322961, #239481, #334611):
  - use Ubuntu's smarty lib directory for linking
  - use internal yui library 
  - add update-notifier support back in

[Matt Oquist]
  * renamed prerm script
  * significantly rewrote postinst and other maintainer scripts to improve
    user experience and package maintainability
    (Closes LP: #225662, #325450, #327843, #303078, #234609)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
body#mod-quiz-report table#itemanalysis {
2
 
  margin: 20px auto;
3
 
}
4
 
body#mod-quiz-report table#itemanalysis .header,
5
 
body#mod-quiz-report table#itemanalysis .cell
6
 
{
7
 
  padding: 4px;
8
 
}
9
 
body#mod-quiz-report table#itemanalysis .header .commands {
10
 
  display: inline;
11
 
}
12
 
body#mod-quiz-report table#itemanalysis td {
13
 
  border-width: 1px;
14
 
  border-style: solid;
15
 
}
16
 
body#mod-quiz-report table#itemanalysis .header {
17
 
  text-align: left;
18
 
}
19
 
body#mod-quiz-report table#itemanalysis .numcol {
20
 
  text-align: center;
21
 
  vertical-align : middle !important;
22
 
}
23
 
 
24
 
body#mod-quiz-report table#itemanalysis .uncorrect {
25
 
  color: red;
26
 
}
27
 
 
28
 
body#mod-quiz-report table#itemanalysis .correct {
29
 
  color: blue;
30
 
  font-weight : bold;
31
 
}
32
 
 
33
 
body#mod-quiz-report table#itemanalysis .partialcorrect {
34
 
  color: green !important;
35
 
}
36
 
 
37
 
body#mod-quiz-report table#itemanalysis .qname {
38
 
  color: green !important;
39
 
}
40
 
 
41
 
/* manual grading */
42
 
body#mod-quiz-grading table#grading
43
 
{
44
 
  width: 80%;
45
 
  margin: auto;
46
 
}
47
 
 
48
 
body#mod-quiz-grading table#grading
49
 
{
50
 
  margin: 20px auto;
51
 
}
52
 
 
53
 
body#mod-quiz-grading table#grading .header,
54
 
body#mod-quiz-grading table#grading .cell
55
 
{
56
 
  padding: 4px;
57
 
}
58
 
 
59
 
body#mod-quiz-grading table#grading .header .commands 
60
 
{
61
 
  display: inline;
62
 
}
63
 
 
64
 
body#mod-quiz-grading table#grading .picture 
65
 
{
66
 
  width: 40px;
67
 
}
68
 
 
69
 
body#mod-quiz-grading table#grading td 
70
 
{
71
 
  border-left-width: 1px;
72
 
  border-right-width: 1px;
73
 
  border-left-style: solid;
74
 
  border-right-style: solid;
75
 
  vertical-align: bottom;
76
 
}
77
 
 
78
 
.mod-quiz .quiz-report-title {
79
 
  text-align: center;
80
 
  font-weight : bold;
81
 
}
82
 
 
83
 
.mod-quiz .gradingdetails {
84
 
  font-size: small;
85
 
}
86
 
 
87
 
#mod-quiz-attempt #page {
88
 
    text-align: center;
89
 
}
90
 
 
91
 
#mod-quiz-attempt #timer .generalbox {
92
 
  width:150px
93
 
}
94
 
 
95
 
#mod-quiz-attempt #timer {
96
 
  position:absolute;
97
 
  /*top:100px; is set by js*/
98
 
  left:10px
99
 
}
100
 
#question-preview .essay .answer textarea {
101
 
  width: 400px;
102
 
}