diff --git a/src/addon/mod/quiz/pages/player/player.html b/src/addon/mod/quiz/pages/player/player.html
index 253ea995b..430d23fd5 100644
--- a/src/addon/mod/quiz/pages/player/player.html
+++ b/src/addon/mod/quiz/pages/player/player.html
@@ -89,7 +89,8 @@
- {{ 'addon.mod_quiz.question' | translate }}
+ {{ 'addon.mod_quiz.question' | translate }}
+ #
{{ 'addon.mod_quiz.status' | translate }}
@@ -98,7 +99,7 @@
{{ question.number }}
- {{ question.status }}
+ {{ question.status }}
diff --git a/src/app/app.scss b/src/app/app.scss
index 2a11f4e3c..19d818cdf 100644
--- a/src/app/app.scss
+++ b/src/app/app.scss
@@ -437,9 +437,15 @@ ion-app.app-root {
color: $core-question-correct-color;
background-color: $core-question-correct-color-bg;
- .label, ion-label.label {
+ .label, ion-label.label, .select-text, .select-icon .select-icon-inner {
color: $core-question-correct-color;
}
+ .radio-icon {
+ border-color: $core-question-correct-color;
+ }
+ .radio-inner {
+ background-color: $core-question-correct-color;
+ }
}
.core-question-answer-incorrect,
@@ -447,9 +453,15 @@ ion-app.app-root {
color: $core-question-incorrect-color;
background-color: $core-question-incorrect-color-bg;
- .label, ion-label.label {
+ .label, ion-label.label, .select-text, .select-icon .select-icon-inner {
color: $core-question-incorrect-color;
}
+ .radio-icon {
+ border-color: $core-question-incorrect-color;
+ }
+ .radio-inner {
+ background-color: $core-question-incorrect-color;
+ }
}
.core-question-feedback-container {
diff --git a/src/theme/format-text.scss b/src/theme/format-text.scss
index 1e04a9d79..ad0a230fb 100644
--- a/src/theme/format-text.scss
+++ b/src/theme/format-text.scss
@@ -184,4 +184,8 @@ ion-app.app-root {
width: min-content;
display: inline;
}
-}
\ No newline at end of file
+
+ .toolbar core-format-text {
+ font-size: inherit;
+ }
+}