Commit ade04ece by Braden MacDonald Committed by GitHub

Merge pull request #14 from arbrandes/SOL-1996

[SOL-1996] Ensure header cells are not blank
parents 22249c62 9f245d35
......@@ -166,6 +166,7 @@ li.poll-result .poll-image {
background: none;
}
.survey-table thead tr td,
.survey-table thead tr th {
font-weight: bold;
font-size: .9rem;
......
......@@ -13,6 +13,7 @@
vertical-align: middle;
}
.themed-xblock.poll-block .survey-table thead tr td,
.themed-xblock.poll-block .survey-table thead tr th {
font-size: 1em;
}
......
......@@ -3,7 +3,7 @@
<table class="survey-table poll-results">
<thead>
<tr>
<th></th>
<td></td>
{{#each answers}}
<th class="survey-answer">{{{this}}}</th>
{{/each}}
......
......@@ -6,7 +6,7 @@
<table class="survey-table">
<thead>
<tr>
<th></th>
<td></td>
{% for answer, label in answers %}
<th class="survey-answer">{{label}}</th>
{% endfor %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment