Use SASS var for border colour and correct closing tbody tag

This commit is contained in:
Imdad Ahad
2016-11-14 16:00:45 +00:00
parent dbbb2f7848
commit eaa246bd26
2 changed files with 3 additions and 3 deletions

View File

@@ -165,8 +165,8 @@
.table-row-group {
border-top: 1px solid #BFC1C3;
border-bottom: 1px solid #BFC1C3;
border-top: 1px solid $border-colour;
border-bottom: 1px solid $border-colour;
}
.table-empty-message {

View File

@@ -52,7 +52,7 @@
{% macro row_group(id=None) %}
<tbody class="table-row-group" {% if id %}id="{{id}}"{% endif %}>
{{ caller() }}
</tr>
</tbody>
{%- endmacro %}
{% macro field(align='left', status='', border=True) -%}