Skip to content

Commit 99c74b0

Browse files
committed
Changed button color in web tool
1 parent ddaf474 commit 99c74b0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

_includes/demo.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h6 style="margin-bottom: 0px; margin-top: 18px">Input a tensor algebra expressi
4242
<input id="prefix" class="mdl-textfield__input" style="font-family: monospace" spellcheck="false" autocomplete="off" autocorrect="false" autocapitalize="false">
4343
<label class="mdl-textfield__label">Prefix (Optional)</label>
4444
</div>
45-
<button id="btnGetKernel" class="button demo-btn">Generate Kernel</button>
45+
<button id="btnGetKernel" class="button is-primary demo-btn">Generate Kernel</button>
4646
</div>
4747
</div>
4848
</div>
@@ -119,10 +119,10 @@ <h6 style="margin-bottom: 0px; margin-top: 18px">Input a tensor algebra expressi
119119
<div class="mdl-grid" style="padding-top: 8px; padding-bottom: 0px">
120120
<div class="mdl-cell mdl-cell--12-col">
121121
<div align="right" style="padding-right: 0px">
122-
<button id="btnCPU" class="button sample-button">
122+
<button id="btnCPU" class="button is-primary sample-button">
123123
Sample CPU Schedule
124124
</button>
125-
<button id="btnGPU" class="button sample-button">
125+
<button id="btnGPU" class="button is-primary sample-button">
126126
Sample GPU Schedule
127127
</button>
128128
</div>
@@ -166,7 +166,7 @@ <h6 style="margin-bottom: 0px; margin-top: 18px">Input a tensor algebra expressi
166166
</div>
167167
</td>
168168
<td id="cellBtnDownload" align="right">
169-
<button id="btnDownload" class="button" style="width: 100%">Download</button>
169+
<button id="btnDownload" class="button is-primary" style="width: 100%">Download</button>
170170
</td>
171171
</tr>
172172
</table>

javascripts/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ function demo() {
829829
var reorderId = "reorder" + row;
830830
parameters += "<li class=\"add-reorder\" id=\"";
831831
parameters += reorderId;
832-
parameters += "\"><button class=\"button\" style=\"width: 200px; ";
832+
parameters += "\"><button class=\"button is-primary\" style=\"width: 200px; ";
833833
parameters += "margin-top: 13.5px\">Add IndexVar</button></li>";
834834
}
835835

0 commit comments

Comments
 (0)