feat: utf symbols
This commit is contained in:
parent
b68457c9a1
commit
2b1ebea049
@ -81,7 +81,8 @@ input[type="number"] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input[type="button"] {
|
input[type="button"] {
|
||||||
min-width: 60px;
|
min-width: 36px;
|
||||||
|
min-height: 40px;
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -156,6 +157,11 @@ label,
|
|||||||
vertical-align: center;
|
vertical-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.next, .stop, .reset {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
.reset-menu .loop {
|
.reset-menu .loop {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.7 KiB |
@ -50,13 +50,13 @@
|
|||||||
<input
|
<input
|
||||||
type="button"
|
type="button"
|
||||||
name="start2d"
|
name="start2d"
|
||||||
value="start"
|
value="▶"
|
||||||
@click="store.toggleDraw2d()"
|
@click="store.toggleDraw2d()"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-field">
|
<div class="form-field">
|
||||||
<label>Start from last result</label>
|
<label>Start from last result</label>
|
||||||
<input type="button" value="start" @click="store.toggleDraw2dLast()" />
|
<input type="button" value="▶" @click="store.toggleDraw2dLast()" />
|
||||||
</div>
|
</div>
|
||||||
<div class="form-field">
|
<div class="form-field">
|
||||||
<label>Start from picture</label><br />
|
<label>Start from picture</label><br />
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<input
|
<input
|
||||||
type="button"
|
type="button"
|
||||||
name="start"
|
name="start"
|
||||||
value="start"
|
value="▶"
|
||||||
@click="store.toggleDraw1d()"
|
@click="store.toggleDraw1d()"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -25,21 +25,21 @@
|
|||||||
type="button"
|
type="button"
|
||||||
name="next"
|
name="next"
|
||||||
class="next"
|
class="next"
|
||||||
value="next"
|
value="▶"
|
||||||
@click="store.toggleNext()"
|
@click="store.toggleNext()"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
type="button"
|
type="button"
|
||||||
name="stop"
|
name="stop"
|
||||||
class="stop"
|
class="stop"
|
||||||
value="stop"
|
value="⏹"
|
||||||
@click="store.toggleStop()"
|
@click="store.toggleStop()"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
type="button"
|
type="button"
|
||||||
name="reset"
|
name="reset"
|
||||||
class="reset"
|
class="reset"
|
||||||
value="reset"
|
value="⌫"
|
||||||
@click="store.toggleReset()"
|
@click="store.toggleReset()"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user