Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions problem_builder/public/css/questionnaire.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@

.mentoring div[data-block-type=pb-mrq] .questionnaire .choice-result {
display: inline-block;
padding: 0;
margin: 0 5px;
background: none;
border: none;
outline: none;
}

.mentoring .questionnaire .choice {
Expand Down
4 changes: 2 additions & 2 deletions problem_builder/templates/html/mrqblock.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ <h4 class="question-title" id="heading_{{ self.html_id }}">{{ self.display_name_
<div class="choices-list">
{% for choice in custom_choices %}
<div class="choice" aria-live="polite" aria-atomic="true">
<div class="choice-result fa icon-2x"
<button class="choice-result fa icon-2x"
id="result_{{ self.html_id }}-{{ forloop.counter }}"
aria-label=""
data-label_correct="{% trans "Correct" %}"
data-label_incorrect="{% trans "Incorrect" %}"></div>
data-label_incorrect="{% trans "Incorrect" %}"></button>
<label class="choice-label"
for="{{ self.html_id }}_{{ forloop.counter }}"
aria-describedby="feedback_{{ self.html_id }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# Constants #########################################################

VERSION = '3.3.13'
VERSION = '3.3.14'

# Functions #########################################################

Expand Down