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

Lower z-index for "Remove layer" trashcans in remote dataset import #7954

Merged
merged 3 commits into from
Jul 29, 2024
Merged
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 CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
### Fixed
- Fixed a bug that allowed the default newly created bounding box to appear outside the dataset. In case the whole bounding box would be outside it is created regardless. [#7892](https://github.com/scalableminds/webknossos/pull/7892)
- Fixed a rare bug that could cause hanging dataset uploads. [#7932](https://github.com/scalableminds/webknossos/pull/7932)
- Fixed that trashcan icons to remove layers during remote dataset upload were floating above the navbar. [#7954](https://github.com/scalableminds/webknossos/pull/7954)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ function SimpleLayerForm({
}}
>
{mayLayerBeRemoved && (
<div style={{ position: "absolute", top: 12, right: 0, zIndex: 1000 }}>
<div style={{ position: "absolute", top: 12, right: 0, zIndex: 500 }}>
<Tooltip title="Remove Layer">
<Button shape="circle" icon={<DeleteOutlined />} onClick={() => onRemoveLayer(layer)} />
</Tooltip>
Expand Down