Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
.gradingform_rubric.editor[.frozen|.editable]
3
  .criteria
4
    .criterion[.first][.last][.odd|.even]
5
        .controls
6
            .moveup
7
                [input type=submit]
8
            .delete
9
                [input type=submit]
10
            .movedown
11
                [input type=submit]
12
        .description
13
        .levels
14
            td.level[.first][.last][.odd|.even]
15
                div.level-wrapper
16
                    .definition
17
                        [textarea]
18
                    .score
19
                        span
20
                            [input type=text]
21
                    .delete
22
                        [input type=submit]
23
        .addlevel
24
            [input type=submit]
25
        .remark
26
            textarea
27
    .addcriterion
28
        [input type=submit]
29
  .options
30
    .optionsheading
31
    .option.OPTIONNAME
32
 
33
.gradingform_rubric[.review][.evaluate[.editable|.frozen]]
34
  .criteria
35
    .criterion[.first][.last][.odd|.even]
36
        .description
37
        .levels
38
            td.level[.first][.last][.odd|.even]
39
                div.level-wrapper
40
                    div.radio
41
                        input
42
                    .definition
43
                    .score
44
                        span
45
 
46
*/
47
 
48
.gradingform_rubric_editform .status {
49
    font-weight: normal;
50
    text-transform: uppercase;
51
    font-size: 60%;
52
    padding: 0.25em;
53
    border: 1px solid #eee;
54
}
55
 
56
.gradingform_rubric_editform .status.ready {
57
    background-color: #e7f1c3;
58
    border-color: #aea;
59
}
60
 
61
.gradingform_rubric_editform .status.draft {
62
    background-color: #f3f2aa;
63
    border-color: #ee2;
64
}
65
 
66
.gradingform_rubric {
67
    padding-bottom: 1.5em;
68
}
69
 
70
.gradingform_rubric.editor .criterion .controls,
71
.gradingform_rubric .criterion .description,
72
.gradingform_rubric .criterion .levels,
73
.gradingform_rubric.editor .criterion .addlevel,
74
.gradingform_rubric .criterion .remark,
75
.gradingform_rubric .criterion .levels .level {
76
    vertical-align: top;
77
}
78
 
79
.gradingform_rubric.editor .criterion .controls,
80
.gradingform_rubric .criterion .description,
81
.gradingform_rubric.editor .criterion .addlevel,
82
.gradingform_rubric .criterion .remark,
83
.gradingform_rubric .criterion .levels .level {
84
    padding: 3px;
85
}
86
 
87
.gradingform_rubric .criteria {
88
    height: 100%;
89
    display: flex;
90
    width: 100%;
91
    overflow: auto;
92
}
93
 
94
.gradingform_rubric .criterion {
95
    border: 1px solid #ddd;
96
    overflow: hidden;
97
}
98
 
99
.gradingform_rubric .criterion.even td {
100
    background: #f0f0f0;
101
}
102
 
103
.gradingform_rubric .criterion.odd td {
104
    background: white;
105
}
106
 
107
.gradingform_rubric .criterion .description {
108
    min-width: 150px;
109
    font-weight: bold;
110
}
111
 
112
.gradingform_rubric .criterion .levels table {
113
    width: 100%;
114
    height: 100%;
115
}
116
 
117
.gradingform_rubric .criterion .levels,
118
.gradingform_rubric .criterion .levels table,
119
.gradingform_rubric .criterion .levels table tbody {
120
    padding: 0;
121
    margin: 0;
122
}
123
 
124
.gradingform_rubric .criterion .levels .level {
125
    border-left: 1px solid #ddd;
126
    max-width: 150px;
127
}
128
 
129
.gradingform_rubric .criterion .levels .level .level-wrapper {
130
    position: relative;
131
}
132
 
133
.gradingform_rubric .criterion .levels .level.last {
134
    border-right: 1px solid #ddd;
135
}
136
 
137
.gradingform_rubric .plainvalue.empty {
138
    font-style: italic;
139
    color: #aaa;
140
}
141
 
142
/* Make invisible the buttons 'Move up' for the first criterion and
143
   'Move down' for the last, because those buttons will make no change */
144
.gradingform_rubric.editor .criterion.first .controls .moveup input,
145
.gradingform_rubric.editor .criterion.last .controls .movedown input {
146
    display: none;
147
}
148
 
149
/* replace buttons with images */
150
.gradingform_rubric.editor .delete input,
151
.gradingform_rubric.editor .duplicate input,
152
.gradingform_rubric.editor .moveup input,
153
.gradingform_rubric.editor .movedown input {
154
    text-indent: -1000em;
155
    cursor: pointer;
156
    border: none;
157
}
158
 
159
.gradingform_rubric.editor .criterion .controls .delete input {
160
    width: 24px;
161
    height: 24px;
162
    background: transparent url([[pix:t/delete]]) no-repeat center;
163
    margin: .3em .3em 0 .3em;
164
}
165
 
166
.gradingform_rubric.editor .criterion .controls .duplicate input {
167
    width: 24px;
168
    height: 24px;
169
    background: transparent url([[pix:t/copy]]) no-repeat center;
170
    margin: .3em .3em 0 .3em;
171
}
172
 
173
.gradingform_rubric.editor .levels .level .delete input {
174
    width: 24px;
175
    height: 24px;
176
    background: transparent url([[pix:t/delete]]) no-repeat center;
177
}
178
 
179
.gradingform_rubric.editor .moveup input {
180
    width: 24px;
181
    height: 24px;
182
    background: transparent url([[pix:t/up]]) no-repeat center;
183
    margin: .3em .3em 0 .3em;
184
}
185
 
186
.gradingform_rubric.editor .movedown input {
187
    width: 24px;
188
    height: 24px;
189
    background: transparent url([[pix:t/down]]) no-repeat center;
190
    margin: .3em .3em 0 .3em;
191
}
192
 
193
.gradingform_rubric.editor .addcriterion input,
194
.gradingform_rubric.editor .addlevel input {
195
    background: #fff url([[pix:t/add]]) no-repeat 7px 8px;
196
    display: block;
197
    color: #555;
198
    font-weight: bold;
199
    text-decoration: none;
200
}
201
 
202
.gradingform_rubric.editor .addcriterion input {
203
    height: 30px;
204
    line-height: 29px;
205
    margin-bottom: 14px;
206
    padding-left: 20px;
207
    padding-right: 10px;
208
}
209
 
210
.gradingform_rubric.editor .addlevel input {
211
    padding-left: 24px;
212
    padding-right: 8px;
213
}
214
 
215
.gradingform_rubric .options .optionsheading {
216
    font-weight: bold;
217
    font-size: 1.1em;
218
    padding-bottom: 5px;
219
}
220
 
221
.gradingform_rubric .options .option {
222
    padding-bottom: 2px;
223
}
224
 
225
.gradingform_rubric .options .option label {
226
    margin-left: 5px;
227
}
228
 
229
.gradingform_rubric .options .option .value {
230
    margin-left: 5px;
231
    font-weight: bold;
232
}
233
 
234
.gradingform_rubric .criterion .levels.error {
235
    border: 1px solid red;
236
}
237
 
238
.gradingform_rubric .criterion .description.error,
239
.gradingform_rubric .criterion .levels .level .definition.error,
240
.gradingform_rubric .criterion .levels .level .score.error {
241
    background: #fdd;
242
}
243
 
244
.gradingform_rubric-regrade {
245
    padding: 10px;
246
    background: #fdd;
247
    border: 1px solid #f00;
248
    margin-bottom: 10px;
249
}
250
 
251
.gradingform_rubric-restored {
252
    padding: 10px;
253
    background: #ffd;
254
    border: 1px solid #ff0;
255
    margin-bottom: 10px;
256
}
257
 
258
.gradingform_rubric-error {
259
    color: red;
260
    font-weight: bold;
261
}
262
 
263
/* special classes for elements created by rubriceditor.js */
264
.gradingform_rubric.editor .hiddenelement {
265
    display: none;
266
}
267
 
268
.gradingform_rubric.editor .pseudotablink {
269
    background-color: transparent;
270
    border: 0 solid;
271
    height: 1px;
272
    width: 1px;
273
    color: transparent;
274
    padding: 0;
275
    margin: 0;
276
    position: relative;
277
    float: right;
278
}
279
 
280
.gradingpanel-gradingform_rubric [aria-checked="true"] {
281
    border: 1px solid black;
282
}