-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradebook.css
186 lines (155 loc) · 3.06 KB
/
gradebook.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
* @file
* CSS rules for formating the gradebook
*/
/**
* This container surrounds the gradebook_page.
* Adds scrollbars to keep table under control.
*/
#gradebook-container {
overflow-x: scroll;
overflow-y: scroll;
}
/**
* Style the links above the gradebook grade page.
* Each link is an item in an unordered list.
*/
#gradebook-grade-page-links {
background-color: #c0c0c0;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 10px;
margin-bottom: 10px;
font-size: 100%;
list-style-type: circle;
}
#gradebook-grade-page-links ul {
margin: 0;
padding: 0;
}
#gradebook-grade-page-links li {
display: inline;
padding-right: 10px;
}
/**
* Rules to format the gradebook table
*/
.gradebook {
width: 100%;
font-size: 80%;
border: 1px solid #ccc;
}
/**
* Rules for formatting gradebook table header rows and columns
*/
.gradebook th,
.gradebook .category,
.gradebook .possible,
.gradebook .date,
.gradebook .title,
.gradebook .name,
.gradebook .edit-all,
.gradebook .exempt-box {
border: 2px solid #ccc;
text-align: center;
}
.gradebook .select {
border: 2px solid #ccc;
text-align: center;
}
.gradebook .earned-possible {
border: 2px solid #ccc;
text-align: center;
}
.gradebook .note {
border: 2px solid #ccc;
text-align: left;
}
.gradebook .average {
border: 2px solid #ccc;
color: #FF0000;
text-align: center;
}
/**
* Rules for formating gradebook table grade entries (and legend).
*/
.gradebook .empty {
text-align: center;
}
.gradebook .grade,
.gradebook-legend-item.grade {
text-align: center;
background-color: #00FF00;
list-style: none;
list-style-type: none;
}
.gradebook .term-grade {
text-align: center;
color: #FF0000;
}
/**
* Rules to provide line through exempted grade
*/
.gradebook .exempt,
.gradebook .exempt a,
.gradebook-legend-item.exempt {
text-decoration: line-through;
color: #AA0000;
}
/**
* Rules to format the extra fields added to assignment nodes.
*/
.gradebook-assignment-notice {
border:.75pt solid #317082;;
border-left-width: 5px;
vertical-align: top;
background: #e2ebed;
color: #027ac6;
padding: 10px;
margin-top: 20px;
margin-bottom: 20px;
margin-right: auto;
margin-left: auto;
text-align: left;
}
.gradebook-assignment-notice ul.gradebook-assignment-category li {
margin: 0;
padding: 0;
list-style-type: none;
font-weight: bold;
}
.gradebook-assignment-notice .gradebook-assignment-due {
color: #027ac6;
}
.gradebook-assignment-notice .gradebook-assignment-due-date {
color: #FF0000;
}
.gradebook-assignment-notice .gradebook-assignment-possible {
color: #027ac6;
}
.gradebook-assignment-notice .gradebook-assignment-possible-points {
color: #FF0000;
}
/**
* Rules for the Gradebook Legend
*/
table td.gradebook-mini,
table th.gradebook-mini,
table.gradebook-mini {
padding:0 1px 0 0;
margin:0;
}
table td.gradebook-mini a {
font-weight:normal;
}
.gradebook-mini {
font-size:.7em;
width:32%;
vertical-align:top;
}
table.gradebook-legend {
background-color:#ccc;
width: 100%;
margin: 0;
padding: 0;
}