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 { ...@@ -166,6 +166,7 @@ li.poll-result .poll-image {
background: none; background: none;
} }
.survey-table thead tr td,
.survey-table thead tr th { .survey-table thead tr th {
font-weight: bold; font-weight: bold;
font-size: .9rem; font-size: .9rem;
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
vertical-align: middle; vertical-align: middle;
} }
.themed-xblock.poll-block .survey-table thead tr td,
.themed-xblock.poll-block .survey-table thead tr th { .themed-xblock.poll-block .survey-table thead tr th {
font-size: 1em; font-size: 1em;
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<table class="survey-table poll-results"> <table class="survey-table poll-results">
<thead> <thead>
<tr> <tr>
<th></th> <td></td>
{{#each answers}} {{#each answers}}
<th class="survey-answer">{{{this}}}</th> <th class="survey-answer">{{{this}}}</th>
{{/each}} {{/each}}
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<table class="survey-table"> <table class="survey-table">
<thead> <thead>
<tr> <tr>
<th></th> <td></td>
{% for answer, label in answers %} {% for answer, label in answers %}
<th class="survey-answer">{{label}}</th> <th class="survey-answer">{{label}}</th>
{% endfor %} {% 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