Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update button style for better visual distinction #2898

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions jdaviz/components/plugin_action_button.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<v-btn :disabled="spinner || disabled"
text
elevation="3"
:color=buttonColor
@click="$emit('click')"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@

<v-row justify="end">
<j-tooltip tipid='plugin-moment-save-fits'>
<v-btn color="primary" text @click="save_as_fits">Save as FITS</v-btn>
<v-btn color="primary" text elevation="3" @click="save_as_fits">Save as FITS</v-btn>

</j-tooltip>
</v-row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@

<v-row justify="end">
<j-tooltip tipid='plugin-extract-save-fits'>
<v-btn color="primary" text @click="save_as_fits">Save as FITS</v-btn>
<v-btn color="primary" text elevation="3" @click="save_as_fits">Save as FITS</v-btn>

</j-tooltip>
</v-row>
Expand Down
2 changes: 1 addition & 1 deletion jdaviz/configs/default/plugins/collapse/collapse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

<v-row justify="end">
<j-tooltip tipid='plugin-collapse-save-fits'>
<v-btn color="primary" text @click="save_as_fits">Save as FITS</v-btn>
<v-btn color="primary" text elevation="3" @click="save_as_fits">Save as FITS</v-btn>

</j-tooltip>
</v-row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
</template>
</v-select>
<v-col align="right">
<v-btn text @click="clear_flags_filter" color="accent">
<v-btn text elevation="3" @click="clear_flags_filter" color="accent">
Clear Filter
</v-btn>
</v-col>
Expand Down
Loading