style: changed quiz button to secondary

This commit is contained in:
Jannat Patel
2021-10-22 18:55:55 +05:30
parent 60393e048e
commit ce01e83382
2 changed files with 4 additions and 4 deletions

View File

@@ -483,7 +483,7 @@ input[type=checkbox] {
background: #FFFFFF;
}
.is-secondary:hover {
.is-secondary:hover:not(:disabled) {
text-decoration: none;
color: inherit;
}

View File

@@ -47,9 +47,9 @@
</div>
<div class="quiz-footer">
<span class="font-weight-bold"> <span class="current-question">1</span> of {{ quiz.questions | length }}</span>
<button class="btn btn-primary pull-right" id="check" disabled>Check</button>
<button class="btn btn-primary hide" id="next">Next</button>
<button class="btn btn-primary hide" id="summary">Summary</button>
<button class="button is-secondary pull-right" id="check" disabled>Check</button>
<button class="button is-default hide" id="next">Next</button>
<button class="button is-default hide" id="summary">Summary</button>
<small id="submission-message" class="font-weight-bold hide"> Please join the course to submit the Quiz.</small>
</div>
<div class="button is-secondary pull-right hide" id="try-again">Try Again</div>