Added custom scroll bars and separated the table header from the tables for Sales and the Graphs tables.
This commit is contained in:
27
imports/ui/TestList.html
Normal file
27
imports/ui/TestList.html
Normal 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"> as "{{sheetProductName}}"</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user