Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.gradingform_guide-regrade {
2
    padding: 10px;
3
    background: #fdd;
4
    border: 1px solid #f00;
5
    margin-bottom: 10px;
6
}
7
 
8
.gradingform_guide-restored {
9
    padding: 10px;
10
    background: #ffd;
11
    border: 1px solid #ff0;
12
    margin-bottom: 10px;
13
}
14
 
15
.gradingform_guide-error {
16
    color: red;
17
    font-weight: bold;
18
}
19
 
20
.gradingform_guide_editform .status {
21
    font-weight: normal;
22
    text-transform: uppercase;
23
    font-size: 60%;
24
    padding: 0.25em;
25
    border: 1px solid #eee;
26
}
27
 
28
.gradingform_guide_editform .status.ready {
29
    background-color: #e7f1c3;
30
    border-color: #aea;
31
}
32
 
33
.gradingform_guide_editform .status.draft {
34
    background-color: #f3f2aa;
35
    border-color: #ee2;
36
}
37
 
38
.gradingform_guide.editor .criterion .controls,
39
.gradingform_guide .criterion .description,
40
.gradingform_guide .criterion .remark {
41
    vertical-align: top;
42
}
43
 
44
.gradingform_guide.editor .criterion .controls,
45
.gradingform_guide.editor .criterion .description,
46
.gradingform_guide.editor .criterion .remark {
47
    padding: 3px;
48
}
49
 
50
.gradingform_guide .criteria {
51
    height: 100%;
52
}
53
 
54
.gradingform_guide .criterion {
55
    border: 1px solid #ddd;
56
    overflow: hidden;
57
}
58
 
59
.gradingform_guide .criterion.even {
60
    background: #f0f0f0;
61
}
62
 
63
.gradingform_guide .criterion .description {
64
    width: 100%;
65
}
66
 
67
.gradingform_guide .criterion .description .criterionmaxscore input {
68
    width: 20px;
69
}
70
 
71
.gradingform_guide .criterion .description .criterionname {
72
    font-weight: bold;
73
}
74
 
75
.gradingform_guide .criterion label {
76
    font-weight: bold;
77
    padding-right: 5px;
78
}
79
 
80
.gradingform_guide .plainvalue.empty {
81
    font-style: italic;
82
    color: #aaa;
83
}
84
 
85
.gradingform_guide .plainvalue.editname {
86
    font-weight: bold;
87
}
88
 
89
/* Make invisible the buttons 'Move up' for the first criterion and 'Move down' for
90
   the last, because those buttons will make no change */
91
.gradingform_guide.editor .criterion.first.last .controls .delete input,
92
.gradingform_guide.editor .criterion.first .controls .moveup input,
93
.gradingform_guide.editor .criterion.last .controls .movedown input {
94
    display: none;
95
}
96
 
97
/* replace buttons with images */
98
.gradingform_guide.editor .delete input,
99
.gradingform_guide.editor .moveup input,
100
.gradingform_guide.editor .movedown input {
101
    text-indent: -1000em;
102
    cursor: pointer;
103
    border: none;
104
}
105
 
106
.gradingform_guide.editor .criterion .controls .delete input {
107
    width: 20px;
108
    height: 16px;
109
    background: transparent url([[pix:t/delete]]) no-repeat center top;
110
    margin-top: 4px;
111
}
112
 
113
.gradingform_guide.editor .moveup input {
114
    width: 20px;
115
    height: 15px;
116
    background: transparent url([[pix:t/up]]) no-repeat center top;
117
    margin-top: 4px;
118
}
119
 
120
.gradingform_guide.editor .movedown input {
121
    width: 20px;
122
    height: 15px;
123
    background: transparent url([[pix:t/down]]) no-repeat center top;
124
    margin-top: 4px;
125
}
126
 
127
.gradingform_guide.editor .addcriterion input,
128
.gradingform_guide.editor .addcomment input {
129
    background: transparent url([[pix:t/add]]) no-repeat;
1441 ariadna 130
    background-size: 0.75rem;
1 efrain 131
    display: block;
132
    color: #555;
133
    font-weight: bold;
134
    text-decoration: none;
135
}
136
 
137
.gradingform_guide.editor .addcriterion input,
138
.gradingform_guide.editor .addcomment input {
139
    background-position: left 5px top 8px;
140
    height: 30px;
141
    line-height: 29px;
142
    margin-bottom: 14px;
143
    padding-left: 20px;
144
    padding-right: 10px;
145
}
146
 
147
.gradingform_guide .options .optionsheading {
148
    font-weight: bold;
149
    font-size: 1.1em;
150
    padding-bottom: 5px;
151
}
152
 
153
.gradingform_guide .options .option {
154
    padding-bottom: 2px;
155
}
156
 
157
.gradingform_guide .options .option label {
158
    margin-left: 5px;
159
}
160
 
161
.gradingform_guide .options .option .value {
162
    margin-left: 5px;
163
    font-weight: bold;
164
}
165
 
166
.gradingform_guide .criterion .description.error {
167
    background: #fdd;
168
}
169
 
170
/* special classes for elements created by guideeditor.js */
171
.gradingform_guide.editor .hiddenelement {
172
    display: none;
173
}
174
 
175
.gradingform_guide.editor .pseudotablink {
176
    background-color: transparent;
177
    border: 0 solid;
178
    height: 1px;
179
    width: 1px;
180
    color: transparent;
181
    padding: 0;
182
    margin: 0;
183
    position: relative;
184
    float: right;
185
}
186
 
187
.jsenabled .gradingform_guide .markingguidecomment {
188
    cursor: pointer;
189
}
190
 
191
.jsenabled .gradingform_guide .markingguidecomment:before {
192
    content: url([[pix:t/add]]);
193
    padding-right: 2px;
194
}
195
 
196
.gradingform_guide .commentheader {
197
    font-weight: bold;
198
    font-size: 1.1em;
199
    padding-bottom: 5px;
200
}
201
 
202
.jsenabled .gradingform_guide .criterionnamelabel {
203
    display: none;
204
}
205
 
206
.jsenabled .gradingform_guide .criterionshortname {
207
    font-weight: bold;
208
}
209
 
210
.gradingform_guide table {
211
    width: 100%;
212
}
213
 
214
.gradingform_guide .descriptionreadonly {
215
    vertical-align: top;
216
}
217
 
218
.gradingform_guide .criteriondescriptionmarkers {
219
    width: 300px;
220
}
221
 
222
.gradingform_guide .markingguideremark {
223
    margin: 0;
224
    width: 100%;
225
    -moz-box-sizing: border-box;
226
    box-sizing: border-box;
227
}
228
 
229
.gradingform_guide .criteriondescriptionscore {
230
    display: inline;
231
}
232
 
233
.gradingform_guide .score label {
234
    display: block;
235
}
236
 
237
.gradingform_guide .score input {
238
    margin: 0;
239
    width: auto;
240
}
241
.gradingform_guide_comment_chooser {
242
    max-height: 80vh;
243
    overflow-y: auto;
244
}
245
.gradingform_guide-frequent-comments {
246
    position: absolute;
247
    top: 7px;
248
    right: 0;
249
}