Added custom scroll bars and separated the table header from the tables for Sales and the Graphs tables.

This commit is contained in:
Wynne Crisman
2017-10-08 08:56:15 -07:00
parent 210517a5c2
commit b5ac9fd249
44 changed files with 4939 additions and 245 deletions

27
imports/ui/TestList.html Normal file
View File

@@ -0,0 +1,27 @@
<template name="TestList">
<div id="testList">
<div id="sortAsc" class="clickable">Sort ASC</div>
<div id="sortDesc" class="clickable">Sort DESC</div>
<div class="testListListing columnContainer">
{{#each products}}
{{>TestListRow}}
{{/each}}
</div>
</div>
</template>
<template name="TestListRow">
<div class="selectionProduct {{#if sheetProduct}}selected{{/if}} columnContent">
<span class="include clickable">
{{#if sheetProduct}}
<i class="fa fa-check-circle" aria-hidden="true"></i>
{{else}}
<i class="fa fa-circle-o" aria-hidden="true"></i>
{{/if}}
<span class="productName noselect">{{name}}</span>
</span>
{{#if showAlternateName}}
<div class="includeAs">&nbsp;&nbsp;as "{{sheetProductName}}"</div>
{{/if}}
</div>
</template>