Files
edx-platform/lms/static/sass/course/_rubric.scss

86 lines
1.1 KiB
SCSS

.rubric-header {
background-color: #fafafa;
border-radius: 5px;
.rubric-collapse {
margin-right: $baseline/2;
}
}
.button {
display: inline-block;
}
.rubric {
margin: 0;
color: #3C3C3C;
tr {
margin: 0;
height: 100%;
}
td {
height: 100%;
border: 1px black solid;
text-align: center;
}
th {
margin: $baseline/4;
padding: $baseline/4;
text-align: center;
}
.points-header th {
padding: 0px;
}
.rubric-label {
position: relative;
display: block;
font-size: .9em;
.choicegroup-correct {
//nothing
}
.choicegroup-incorrect {
display:none;
}
}
.grade {
position: absolute;
bottom: 0;
right: 0;
}
.selected-grade,
.selected-grade .rubric-label {
background: #666;
color: white;
}
input[type=radio]:checked + .rubric-label {
background: white;
color: $base-font-color;
white-space:nowrap;
}
.wrappable {
white-space:normal;
}
input[class='score-selection'] {
position: relative;
font-size: 16px;
}
ul.rubric-list {
margin: 0;
padding: 0;
list-style-type: none;
}
}