Skip to content

Commit

Permalink
fix(plugins/plugin-client-common): improve row hover effect for Seque…
Browse files Browse the repository at this point in the history
…nceDiagram

changes from background color for whole row (inherited from Carbon Components) to what we do for the Timeline and Grid: illuminate the bar/grid color

Fixes #5426
  • Loading branch information
starpit committed Aug 20, 2020
1 parent a5db367 commit 4d646ae
Showing 1 changed file with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,18 @@
border: none;
}
}
.kui--interval-blank {
height: 0.5rem;
tr:hover {
&,
&:hover td {
td {
background-color: transparent !important;
.kui--bar {
filter: saturate(2) brightness(1.25);
}
}
}
.kui--interval-blank {
height: 0.5rem;
}
.kui--interval-start {
height: 1rem;
td.kui--gap-cell {
Expand All @@ -61,8 +66,13 @@
border-bottom: none;
}
}
td.sub-text {
color: var(--color-text-02);
tr {
&,
&:hover {
td.sub-text {
color: var(--color-text-02);
}
}
}

[data-tag='badge-circle'] {
Expand Down

0 comments on commit 4d646ae

Please sign in to comment.