mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-26 13:05: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">
|
||||
<b-button size="sm" title="Plot configurator" @click="showConfigurator">
|
||||
⚙
|
||||
<i-mdi-cog width="12" height="12" />
|
||||
</b-button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
class="me-1"
|
||||
:class="botStore.activeBot.botApiVersion >= 1.12 ? 'col-6' : ''"
|
||||
size="sm"
|
||||
>+
|
||||
><i-mdi-plus-box-outline />
|
||||
</b-button>
|
||||
<b-button
|
||||
v-if="botStore.activeBot.botApiVersion >= 1.12"
|
||||
|
@ -81,7 +81,7 @@
|
|||
class="pair black"
|
||||
:active="blacklistSelect.indexOf(key) > -1"
|
||||
@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>
|
||||
</div>
|
||||
|
@ -149,14 +149,15 @@ onMounted(() => {
|
|||
<style scoped lang="scss">
|
||||
.check {
|
||||
// Hidden checkbox on blacklist selection
|
||||
background: #41b883;
|
||||
// background: white;
|
||||
color: #41b883;
|
||||
opacity: 0;
|
||||
border-radius: 50%;
|
||||
// border-radius: 50%;
|
||||
z-index: 5;
|
||||
width: 1.3em;
|
||||
height: 1.3em;
|
||||
top: -0.2em;
|
||||
left: -0.2em;
|
||||
top: -0.3em;
|
||||
left: -0.3em;
|
||||
position: absolute;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
>
|
||||
<div>
|
||||
{{ comb.pair }}
|
||||
<span v-if="comb.locks" :title="comb.lockReason"> 🔒 </span>
|
||||
<span v-if="comb.locks" :title="comb.lockReason"> <i-mdi-lock /> </span>
|
||||
</div>
|
||||
|
||||
<TradeProfit v-if="comb.trade && !backtestMode" :trade="comb.trade" />
|
||||
|
|
Loading…
Reference in New Issue
Block a user