Skip to content

Commit ffb981c

Browse files
committed
Use icons for visualization step buttons
1 parent 7aa49e0 commit ffb981c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

media/programflow-visualization/webview.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,7 @@ body {
192192
.traceback-text {
193193
color: red;
194194
}
195+
196+
#bottom-area button {
197+
line-height: 18px;
198+
}

src/programflow-visualization/frontend/visualization_panel.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ export class VisualizationPanel {
169169
<p id="traceMax">/?</p>
170170
</div>
171171
<div class="row margin-vertical">
172-
<button class="margin-horizontal" id="firstButton" type="button" onclick="onClick('first')">First</button>
173-
<button class="margin-horizontal" id="prevButton" type="button" onclick="onClick('prev')">Prev</button>
174-
<button class="margin-horizontal" id="nextButton" type="button" onclick="onClick('next')">Next</button>
175-
<button class="margin-horizontal" id="lastButton" type="button" onclick="onClick('last')">Last</button>
172+
<button class="margin-horizontal" id="firstButton" type="button" onclick="onClick('first')">&#9198</button>
173+
<button class="margin-horizontal" id="prevButton" type="button" onclick="onClick('prev')">&#9664</button>
174+
<button class="margin-horizontal" id="nextButton" type="button" onclick="onClick('next')">&#9654</button>
175+
<button class="margin-horizontal" id="lastButton" type="button" onclick="onClick('last')">&#9197</button>
176176
</div>
177177
</div>
178178
<div class="column floating-right">

0 commit comments

Comments
 (0)