Use Iconlibrary throughout

This commit is contained in:
Matthias 2023-05-09 20:31:33 +02:00
parent 90a08b7a33
commit db03cc993a
3 changed files with 9 additions and 8 deletions

View File

@ -42,7 +42,7 @@
<div class="ms-2 me-0 me-md-1"> <div class="ms-2 me-0 me-md-1">
<b-button size="sm" title="Plot configurator" @click="showConfigurator"> <b-button size="sm" title="Plot configurator" @click="showConfigurator">
&#9881; <i-mdi-cog width="12" height="12" />
</b-button> </b-button>
</div> </div>
</div> </div>

View File

@ -33,7 +33,7 @@
class="me-1" class="me-1"
:class="botStore.activeBot.botApiVersion >= 1.12 ? 'col-6' : ''" :class="botStore.activeBot.botApiVersion >= 1.12 ? 'col-6' : ''"
size="sm" size="sm"
>+ ><i-mdi-plus-box-outline />
</b-button> </b-button>
<b-button <b-button
v-if="botStore.activeBot.botApiVersion >= 1.12" v-if="botStore.activeBot.botApiVersion >= 1.12"
@ -81,7 +81,7 @@
class="pair black" class="pair black"
:active="blacklistSelect.indexOf(key) > -1" :active="blacklistSelect.indexOf(key) > -1"
@click="blacklistSelectClick(key)" @click="blacklistSelectClick(key)"
><span class="check">&#x2714;</span>{{ pair }}</b-list-group-item ><span class="check"><i-mdi-check-circle /></span>{{ pair }}</b-list-group-item
> >
</b-list-group> </b-list-group>
</div> </div>
@ -149,14 +149,15 @@ onMounted(() => {
<style scoped lang="scss"> <style scoped lang="scss">
.check { .check {
// Hidden checkbox on blacklist selection // Hidden checkbox on blacklist selection
background: #41b883; // background: white;
color: #41b883;
opacity: 0; opacity: 0;
border-radius: 50%; // border-radius: 50%;
z-index: 5; z-index: 5;
width: 1.3em; width: 1.3em;
height: 1.3em; height: 1.3em;
top: -0.2em; top: -0.3em;
left: -0.2em; left: -0.3em;
position: absolute; position: absolute;
transition: opacity 0.2s; transition: opacity 0.2s;
} }

View File

@ -11,7 +11,7 @@
> >
<div> <div>
{{ comb.pair }} {{ comb.pair }}
<span v-if="comb.locks" :title="comb.lockReason"> &#128274; </span> <span v-if="comb.locks" :title="comb.lockReason"> <i-mdi-lock /> </span>
</div> </div>
<TradeProfit v-if="comb.trade && !backtestMode" :trade="comb.trade" /> <TradeProfit v-if="comb.trade && !backtestMode" :trade="comb.trade" />