mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-26 21:15:15 +00:00
Use Iconlibrary throughout
This commit is contained in:
parent
90a08b7a33
commit
db03cc993a
|
@ -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">
|
||||||
⚙
|
<i-mdi-cog width="12" height="12" />
|
||||||
</b-button>
|
</b-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -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">✔</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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
{{ comb.pair }}
|
{{ comb.pair }}
|
||||||
<span v-if="comb.locks" :title="comb.lockReason"> 🔒 </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" />
|
||||||
|
|
Loading…
Reference in New Issue
Block a user