Merge pull request #12379 from influxdata/fix/cells-context-menu

fix(ui): update z-index of cells when hovered
pull/12380/head
Iris Scholten 2019-03-05 16:29:58 -08:00 committed by GitHub
commit f8c6fdbed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@
### Bug Fixes
1. [12302](https://github.com/influxdata/influxdb/pull/12302): Prevent clipping of code snippets in Firefox
1. [12379](https://github.com/influxdata/influxdb/pull/12379): Prevent clipping of cell edit menus in dashboards
### UI Improvements

View File

@ -14,6 +14,10 @@
z-index: $z--cell-default;
transition: all 200ms ease;
transition-property: left, top;
&:hover {
z-index: $z--cell-context-hover;
}
}
.react-grid-item.cssTransforms {
transition-property: transform;