Skip to content

Commit

Permalink
Fix the bottom of the charts to properly capture clicks
Browse files Browse the repository at this point in the history
The div should not capture any clicks so that other elements positioned there
can get the pointer events.
Change: 131867772
  • Loading branch information
RenatoUtsch authored and tensorflower-gardener committed Aug 31, 2016
1 parent dfc3e6c commit 4d117be
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
display: flex;
flex-direction: row;
justify-content: space-between;
pointer-events: none;
}

.expand-button {
Expand All @@ -157,6 +158,7 @@
height: 32px;
padding: 4px;
border-radius: 100%;
pointer-events: auto;
}

.card-expanded .expand-button {
Expand All @@ -165,6 +167,7 @@

tf-downloader {
margin-right: 30px;
pointer-events: auto;
}

</style>
Expand Down

0 comments on commit 4d117be

Please sign in to comment.