Reorder elements in env panel and initial styling

This commit is contained in:
leigh-mil
2019-10-10 14:54:38 -04:00
parent a44e86f296
commit de28ff303c
4 changed files with 38 additions and 60 deletions

View File

@@ -1,11 +1,11 @@
{% macro ToggleButton(action, open_html, close_html, section_name) %}
<span v-on:click="toggleSection('{{ section_name }}')">
<div v-if="selectedSection === '{{ section_name }}'">
<span v-on:click="toggleSection('{{ section_name }}')" class="accordion-table__item__toggler">
<span v-if="selectedSection === '{{ section_name }}'">
{{ close_html }}
</div>
<div v-else>
</span>
<span v-else>
{{ open_html }}
</div>
</span>
</span>
{% endmacro %}