MOBILE-2847 quiz: Review multianswer question styles
parent
2e14b9bc8a
commit
5c2586b54f
|
@ -3,10 +3,11 @@ ion-app.app-root page-addon-mod-quiz-review {
|
||||||
.item-checkbox-disabled,
|
.item-checkbox-disabled,
|
||||||
.item-select-disabled,
|
.item-select-disabled,
|
||||||
.item-input-disabled,
|
.item-input-disabled,
|
||||||
.text-input[disabled] {
|
[disabled],
|
||||||
|
[readonly] {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
|
||||||
.label, .radio, .checkbox, .select-disabled, .core-correct-icon, .text-input[disabled] {
|
.label, .radio, .checkbox, .select-disabled, .core-correct-icon, [disabled], [readonly] {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,11 +15,5 @@ ion-app.app-root addon-qtype-gapselect {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
background: $gray-lighter;
|
background: $gray-lighter;
|
||||||
|
|
||||||
&.core-question-answer-correct,
|
|
||||||
&.core-question-answer-incorrect {
|
|
||||||
background-color: $gray-lighter;
|
|
||||||
color: $text-color;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,12 +22,12 @@ addon-qtype-multianswer {
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select {
|
input, select {
|
||||||
|
@include border-radius(4px);
|
||||||
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid $gray-dark;
|
||||||
padding: 4px 6px;
|
padding: 6px 8px;
|
||||||
-webkit-border-radius: 4px;
|
@include margin-horizontal(2px);
|
||||||
-moz-border-radius: 4px;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -477,7 +477,22 @@ ion-app.app-root {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.core-question-answer-correct,
|
|
||||||
|
.core-question-answer-correct {
|
||||||
|
color: $core-question-correct-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.core-question-answer-incorrect {
|
||||||
|
color: $core-question-incorrect-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
input, select {
|
||||||
|
&.core-question-answer-correct, &.core-question-answer-incorrect {
|
||||||
|
background-color: $gray-lighter;
|
||||||
|
color: $text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.core-question-correct,
|
.core-question-correct,
|
||||||
.core-question-comment {
|
.core-question-comment {
|
||||||
color: $core-question-correct-color;
|
color: $core-question-correct-color;
|
||||||
|
@ -494,7 +509,6 @@ ion-app.app-root {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.core-question-answer-incorrect,
|
|
||||||
.core-question-incorrect {
|
.core-question-incorrect {
|
||||||
color: $core-question-incorrect-color;
|
color: $core-question-incorrect-color;
|
||||||
background-color: $core-question-incorrect-color-bg;
|
background-color: $core-question-incorrect-color-bg;
|
||||||
|
|
Loading…
Reference in New Issue