Skip to content

Commit

Permalink
fix(addon-charts): LineChart fix dot style (#1745)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirpotekhin authored May 13, 2022
1 parent 96e455c commit 9e2f0f2
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
pointer-events: none;

&:focus,
.column_hovered &,
.column:hover &,
.column._hint_hovered & {
.t-column_hovered &,
.t-column:hover &,
.t-column._hint_hovered & {
opacity: 1;
}
}
Expand All @@ -67,12 +67,12 @@
height: 1px;
}

:host[style^='z-index: 0'] .column_hovered &,
:host:not([style]) .column:hover &,
:host:not([style]) .column._hint_hovered &,
:host[style^='z-index: 0'] .column_hovered + &,
:host:not([style]) .column:hover + &,
:host:not([style]) .column._hint_hovered + & {
:host[style^='z-index: 0'] .t-column_hovered &,
:host:not([style]) .t-column:hover &,
:host:not([style]) .t-column._hint_hovered &,
:host[style^='z-index: 0'] .t-column_hovered + &,
:host:not([style]) .t-column:hover + &,
:host:not([style]) .t-column._hint_hovered + & {
opacity: 1;
}
}
Expand Down

0 comments on commit 9e2f0f2

Please sign in to comment.