Skip to content

Commit

Permalink
modify: tooltip of left-bar (#41)
Browse files Browse the repository at this point in the history
modify tooltip of left-bar
  • Loading branch information
sjh7141 authored Oct 2, 2020
1 parent b7e4052 commit d88c976
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions components/left-bar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
<div class="d-flex align-center" style="height: 93%;">
<div class="text-center" style="width: 100%;">

<v-tooltip right class="tooltip-btn">
<v-tooltip right class="tooltip-btn" color="transparent">
<template v-slot:activator="{ on, attrs }">
<v-btn tile class="mt-5" text :color="activateBtn2(1)" v-bind:class="{ activateBtn: isActivate(1) }" @click="clickMenu(1)" v-bind="attrs" v-on="on">
<v-icon large>mdi-format-color-fill</v-icon>
</v-btn>
</template>

<span>
<v-card class="m-0" max-width="400">
<v-card class="ma-0" max-width="400">
<v-img class="white--text align-end" height="200px"
src="./assets/ChangeBG3.jpg">
<v-card-title style="color:#2b2a2a;">Change Fill and Stroke</v-card-title>
Expand All @@ -46,14 +46,14 @@
</span>
</v-tooltip>

<v-tooltip right class="tooltip-btn">
<v-tooltip right class="tooltip-btn" color="transparent">
<template v-slot:activator="{ on, attrs }">
<v-btn tile class="mt-5" text :color="activateBtn2(2)" v-bind:class="{ activateBtn: isActivate(2) }" @click="clickMenu(2)" v-bind="attrs" v-on="on">
<v-icon>fas fa-crop</v-icon>
</v-btn>
</template>
<span>
<v-card class="m-0" max-width="400">
<v-card class="ma-0" max-width="400">
<v-img class="white--text align-end" height="200px"
src="./assets/Transform.jpg">
<v-card-title style="color:#2b2a2a;">Change Transform</v-card-title>
Expand All @@ -67,14 +67,14 @@
</span>
</v-tooltip>

<v-tooltip right class="tooltip-btn">
<v-tooltip right class="tooltip-btn" color="transparent">
<template v-slot:activator="{ on, attrs }">
<v-btn tile class="mt-5" v-bind:class="{ activateBtn: isActivate(3) }" text :color="activateBtn2(3)" @click="clickMenu(3)" v-bind="attrs" v-on="on">
<v-icon>fas fa-image</v-icon>
</v-btn>
</template>
<span>
<v-card class="m-0 p-0" max-width="400">
<v-card class="ma-0" max-width="400">
<v-img class="white--text align-end" height="200px"
src="./assets/ChangeBG.jpg">
<v-card-title style="color:#2b2a2a;">Change Background</v-card-title>
Expand All @@ -87,14 +87,14 @@
</span>
</v-tooltip>

<v-tooltip right class="tooltip-btn">
<v-tooltip right class="tooltip-btn" color="transparent">
<template v-slot:activator="{ on, attrs }">
<v-btn tile class="mt-5" v-bind:class="{ activateBtn: isActivate(4) }" text :color="activateBtn2(4)" @click="clickMenu(4)" v-bind="attrs" v-on="on">
<v-icon >fas fa-palette</v-icon>
</v-btn>
</template>
<span>
<v-card class="m-0 p-0" max-width="400">
<v-card class="ma-0" max-width="400">
<v-img class="white--text align-end" height="200px"
src="./assets/ChangeStroke.jpg">
<v-card-title style="color:#2b2a2a;">Change Canvas</v-card-title>
Expand All @@ -107,15 +107,15 @@
</span>
</v-tooltip>

<v-tooltip right class="tooltip-btn">
<v-tooltip right class="tooltip-btn" color="transparent">
<template v-slot:activator="{ on, attrs }">
<v-btn tile class="mt-5" text :color="activateBtn2(5)" v-bind:class="{ activateBtn: isActivate(5) }" @click="clickMenu(5)" v-bind="attrs" v-on="on">
<v-icon large>mdi-gif</v-icon>
</v-btn>
</template>

<span>
<v-card class="m-0" max-width="400">
<v-card class="ma-0" max-width="400">
<img class="white--text align-end" height="200px" width="400px"
src="./assets/animation_500_kfqx0wpg.gif">
<v-card-subtitle class="pb-0">download .gif file</v-card-subtitle>
Expand Down

0 comments on commit d88c976

Please sign in to comment.