Hide cell context items until cell hover

pull/10616/head
Alex P 2018-06-28 10:09:07 -07:00
parent 99377ffd76
commit 889fc43969
1 changed files with 6 additions and 0 deletions

View File

@ -211,6 +211,12 @@ $dash-graph-options-arrow: 8px;
display: flex;
align-items: center;
flex-wrap: nowrap;
opacity: 0;
transition: opacity 0.25s ease;
}
.dash-graph:hover .dash-graph-context {
opacity: 1;
}
.dash-graph-context.dash-graph-context__open {