Skip to content

Commit

Permalink
Merge pull request #1491 from kecnry/data-menu-vertical-scroll-fix
Browse files Browse the repository at this point in the history
fix vertical scrolling in data menu
  • Loading branch information
kecnry authored Jul 15, 2022
2 parents ecfb2ee + 17763b4 commit d24f823
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ Specviz
Bug Fixes
---------

* Fix scrolling of "x" button in data menus. [#1491]

Cubeviz
^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions jdaviz/components/viewer_data_select_item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</div>
</j-tooltip>

<div v-if="isSelected && isUnloadable" style="position: absolute; right: 5px">
<div v-if="isSelected && isUnloadable" style="right: 2px">
<j-tooltip tipid='viewer-data-disable'>
<v-btn
icon
Expand All @@ -48,7 +48,7 @@
</j-tooltip>
</div>

<div v-if="isDeletable" style="position: absolute; right: 5px">
<div v-if="isDeletable" style="right: 2px">
<j-tooltip tipid='viewer-data-delete'>
<v-btn
icon
Expand Down

0 comments on commit d24f823

Please sign in to comment.