Skip to content

Commit

Permalink
option button better color
Browse files Browse the repository at this point in the history
  • Loading branch information
alireza0 committed Jun 28, 2024
1 parent 0d36b81 commit 69725ee
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Dial.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('dial.options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('dial.options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Listen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('listen.options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('listen.options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<v-col cols="auto">
<v-dialog v-model="menu" :close-on-content-click="false" transition="scale-transition" max-width="800">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" variant="tonal">{{ $t('main.tiles') }} <v-icon icon="mdi-star-plus" /></v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('main.tiles') }} <v-icon icon="mdi-star-plus" /></v-btn>
</template>
<v-card rounded="xl">
<v-card-title>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocols/Hysteria.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('types.hy.hyOptions') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('types.hy.hyOptions') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocols/Hysteria2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('types.hy.hy2Options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('types.hy.hy2Options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocols/Ssh.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('types.ssh.options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('types.ssh.options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocols/UrlTest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('types.lb.urlTestOptions') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('types.lb.urlTestOptions') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/protocols/Wireguard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('types.wg.options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('types.wg.options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/layouts/modals/Tls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
<v-spacer></v-spacer>
<v-menu v-model="menu" :close-on-content-click="false" location="start">
<template v-slot:activator="{ props }">
<v-btn v-bind="props" hide-details>{{ $t('tls.options') }}</v-btn>
<v-btn v-bind="props" hide-details variant="tonal">{{ $t('tls.options') }}</v-btn>
</template>
<v-card>
<v-list>
Expand Down

0 comments on commit 69725ee

Please sign in to comment.