Skip to content

Commit c2cdc7a

Browse files
authored
Merge pull request #170 from skogsbaer/viz-icons-for-buttons
Use icons for visualization step buttons
2 parents 75bc36d + ffb981c commit c2cdc7a

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

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)