2011-10-10 15:27:15 +08:00
|
|
|
/*
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor[.frozen|.editable]
|
2011-10-26 11:36:29 +08:00
|
|
|
.criteria
|
2011-10-24 16:27:48 +08:00
|
|
|
.criterion[.first][.last][.odd|.even]
|
2011-10-10 15:27:15 +08:00
|
|
|
.controls
|
|
|
|
.moveup
|
|
|
|
[input type=submit]
|
|
|
|
.delete
|
|
|
|
[input type=submit]
|
|
|
|
.movedown
|
|
|
|
[input type=submit]
|
|
|
|
.description
|
2011-10-17 17:03:25 +08:00
|
|
|
.levels
|
2011-10-26 11:36:29 +08:00
|
|
|
td.level[.first][.last][.odd|.even]
|
|
|
|
div.level-wrapper
|
|
|
|
.definition
|
|
|
|
[textarea]
|
|
|
|
.score
|
|
|
|
span
|
|
|
|
[input type=text]
|
|
|
|
.delete
|
|
|
|
[input type=submit]
|
2011-10-17 17:03:25 +08:00
|
|
|
.addlevel
|
|
|
|
[input type=submit]
|
2011-10-24 10:55:03 +08:00
|
|
|
.remark
|
|
|
|
textarea
|
2011-10-10 15:27:15 +08:00
|
|
|
.addcriterion
|
|
|
|
[input type=submit]
|
2011-10-26 11:36:29 +08:00
|
|
|
.options
|
|
|
|
.optionsheading
|
|
|
|
.option.OPTIONNAME
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric[.review][.evaluate[.editable|.frozen]]
|
2011-10-26 11:36:29 +08:00
|
|
|
.criteria
|
2011-10-24 16:27:48 +08:00
|
|
|
.criterion[.first][.last][.odd|.even]
|
2011-10-10 15:27:15 +08:00
|
|
|
.description
|
2011-10-17 17:03:25 +08:00
|
|
|
.levels
|
2011-10-26 11:36:29 +08:00
|
|
|
td.level[.first][.last][.odd|.even]
|
|
|
|
div.level-wrapper
|
|
|
|
div.radio
|
|
|
|
input
|
|
|
|
.definition
|
|
|
|
.score
|
|
|
|
span
|
2011-10-10 15:27:15 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric_editform .status {
|
|
|
|
font-weight: normal;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 60%;
|
|
|
|
padding: 0.25em;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
}
|
2011-11-18 15:35:24 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric_editform .status.ready {
|
|
|
|
background-color: #e7f1c3;
|
2016-07-28 15:37:38 +01:00
|
|
|
border-color: #aea;
|
2016-07-28 09:06:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric_editform .status.draft {
|
|
|
|
background-color: #f3f2aa;
|
2016-07-28 15:37:38 +01:00
|
|
|
border-color: #ee2;
|
2016-07-28 09:06:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric {
|
|
|
|
overflow: auto;
|
|
|
|
padding-bottom: 1.5em;
|
|
|
|
max-width: 720px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2012-02-15 14:56:26 +08:00
|
|
|
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .criterion .controls,
|
|
|
|
.gradingform_rubric .criterion .description,
|
|
|
|
.gradingform_rubric .criterion .levels,
|
|
|
|
.gradingform_rubric.editor .criterion .addlevel,
|
|
|
|
.gradingform_rubric .criterion .remark,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels .level {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .criterion .controls,
|
|
|
|
.gradingform_rubric .criterion .description,
|
|
|
|
.gradingform_rubric.editor .criterion .addlevel,
|
|
|
|
.gradingform_rubric .criterion .remark,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels .level {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criteria {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2011-10-17 17:03:25 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion.even {
|
|
|
|
background: #f0f0f0;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .description {
|
|
|
|
width: 150px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels table {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2011-10-25 08:55:55 +08:00
|
|
|
.gradingform_rubric .criterion .levels,
|
|
|
|
.gradingform_rubric .criterion .levels table,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels table tbody {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels .level {
|
|
|
|
border-left: 1px solid #ddd;
|
|
|
|
max-width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels .level .level-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels .level.last {
|
|
|
|
border-right: 1px solid #ddd;
|
|
|
|
}
|
2011-10-17 17:03:25 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .plainvalue.empty {
|
|
|
|
font-style: italic;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .criterion .levels .level .delete {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels .level .score {
|
|
|
|
font-style: italic;
|
|
|
|
color: #575;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels .level .score .scorevalue {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
2016-07-28 13:06:15 +01:00
|
|
|
/* Make invisible the buttons 'Move up' for the first criterion and
|
|
|
|
'Move down' for the last, because those buttons will make no change */
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .criterion.first .controls .moveup input,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric.editor .criterion.last .controls .movedown input {
|
|
|
|
display: none;
|
|
|
|
}
|
2011-10-10 15:27:15 +08:00
|
|
|
|
|
|
|
/* evaluation */
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels .level.currentchecked {
|
|
|
|
background: #fff0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels .level.checked {
|
|
|
|
background: #d0ffd0;
|
|
|
|
border: 1px solid #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.evaluate .criterion .levels .level:hover {
|
|
|
|
background: #30ff30;
|
|
|
|
}
|
2011-10-17 17:03:25 +08:00
|
|
|
|
|
|
|
/* replace buttons with images */
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .delete input,
|
2015-05-19 08:33:48 -04:00
|
|
|
.gradingform_rubric.editor .duplicate input,
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .moveup input,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric.editor .movedown input {
|
|
|
|
text-indent: -1000em;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .criterion .controls .delete input {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background: transparent url([[pix:t/delete]]) no-repeat center top;
|
|
|
|
margin: .3em .3em 0 .3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .criterion .controls .duplicate input {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background: transparent url([[pix:t/copy]]) no-repeat center top;
|
|
|
|
margin: .3em .3em 0 .3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .levels .level .delete input {
|
|
|
|
width: 12px;
|
|
|
|
height: 16px;
|
|
|
|
background: transparent url([[pix:t/delete]]) no-repeat center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .moveup input {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background: transparent url([[pix:t/up]]) no-repeat center top;
|
|
|
|
margin: .3em .3em 0 .3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .movedown input {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background: transparent url([[pix:t/down]]) no-repeat center top;
|
|
|
|
margin: .3em .3em 0 .3em;
|
|
|
|
}
|
2011-10-17 17:03:25 +08:00
|
|
|
|
2011-10-24 16:27:48 +08:00
|
|
|
.gradingform_rubric.editor .addcriterion input,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric.editor .addlevel input {
|
|
|
|
background: transparent url([[pix:t/add]]) no-repeat top left;
|
|
|
|
display: block;
|
2016-07-28 15:37:38 +01:00
|
|
|
color: #555;
|
2016-07-28 09:06:18 +01:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .addcriterion input {
|
|
|
|
background-position: 5px 8px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 29px;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .addlevel input {
|
|
|
|
background-position: 5px 5px;
|
|
|
|
height: 25px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 45px;
|
|
|
|
padding-left: 18px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .options .optionsheading {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.1em;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
2011-10-26 11:36:29 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .options .option {
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .options .option label {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .options .option .value {
|
|
|
|
margin-left: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric .criterion .levels.error {
|
|
|
|
border: 1px solid red;
|
|
|
|
}
|
2011-11-02 08:31:10 +08:00
|
|
|
|
|
|
|
.gradingform_rubric .criterion .description.error,
|
|
|
|
.gradingform_rubric .criterion .levels .level .definition.error,
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric .criterion .levels .level .score.error {
|
2016-07-28 15:37:38 +01:00
|
|
|
background: #fdd;
|
2016-07-28 09:06:18 +01:00
|
|
|
}
|
2011-11-03 16:08:36 +08:00
|
|
|
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric-regrade {
|
|
|
|
padding: 10px;
|
2016-07-28 15:37:38 +01:00
|
|
|
background: #fdd;
|
2016-07-28 09:06:18 +01:00
|
|
|
border: 1px solid #f00;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric-restored {
|
|
|
|
padding: 10px;
|
2016-07-28 15:37:38 +01:00
|
|
|
background: #ffd;
|
2016-07-28 09:06:18 +01:00
|
|
|
border: 1px solid #ff0;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric-error {
|
|
|
|
color: red;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2011-11-22 10:40:15 +13:00
|
|
|
|
|
|
|
/* special classes for elements created by rubriceditor.js */
|
2016-07-28 09:06:18 +01:00
|
|
|
.gradingform_rubric.editor .hiddenelement {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradingform_rubric.editor .pseudotablink {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0 solid;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
}
|