Skip to content

Commit

Permalink
[UPDATED]- Tooltips added to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
ndasanayaka committed Oct 1, 2024
1 parent 2d4349d commit 1d0b98c
Showing 1 changed file with 25 additions and 8 deletions.
33 changes: 25 additions & 8 deletions src/components/DesktopManagerComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,20 @@
>
</v-select>
</v-col>
<v-btn class="my-1" color="success" rounded dark large
@click="launchProgram"
>
Open Program
</v-btn>
<v-tooltip bottom >

<template v-slot:activator="{ on, attrs }" >
<v-btn class="my-1" color="success" rounded dark large v-bind="attrs"
v-on="on"
@click="launchProgram"
>
Open Program
</v-btn>

</template>
<span>Click to open a program on the current desktop or on a new one</span>

</v-tooltip>
</v-row>
</div>

Expand Down Expand Up @@ -123,9 +132,17 @@
</v-col>
</v-row> -->
<v-row v-if="desktopManagerOnly===false" align="center" justify="center" class="mx-5">
<v-btn class="my-1" color="success" rounded dark large @click="launchIPPDesktop">
Launch IPP Desktop
</v-btn>
<v-tooltip bottom >
<template v-slot:activator="{ on, attrs }" >

<v-btn class="my-1" color="success" rounded dark large v-bind="attrs"
v-on="on" @click="launchIPPDesktop">
Launch IPP Desktop
</v-btn>
</template>
<span>Click to launch a new desktop</span>

</v-tooltip>
</v-row>

</div>
Expand Down

0 comments on commit 1d0b98c

Please sign in to comment.