Skip to content

Commit

Permalink
fix vertical scrolling in data menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Jul 14, 2022
1 parent 4964c8e commit 17763b4
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 @@ -34,6 +34,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 @@ -33,7 +33,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 @@ -47,7 +47,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 17763b4

Please sign in to comment.