Merge pull request #1708 from AbleLincoln/zindex
Fix z-index for options context menupull/10616/head
commit
01386a26fe
|
@ -1,6 +1,8 @@
|
|||
## v1.3.5.0 [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
1. [#1708](https://github.com/influxdata/chronograf/pull/1708): Fix z-index issue in dashboard cell context menu
|
||||
|
||||
### Features
|
||||
### UI Improvements
|
||||
|
||||
|
|
|
@ -176,7 +176,6 @@ input.form-control.dash-graph--name-edit {
|
|||
.dash-graph--options {
|
||||
width: $dash-graph-heading;
|
||||
position: absolute;
|
||||
z-index: 11;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
text-align: center;
|
||||
|
@ -209,6 +208,7 @@ input.form-control.dash-graph--name-edit {
|
|||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: block;
|
||||
z-index: 11;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in New Issue