Skip to content

Commit

Permalink
report: fix tooltip hover animation (#6288)
Browse files Browse the repository at this point in the history
  • Loading branch information
wardpeet authored and paulirish committed Oct 17, 2018
1 parent 43c5ee1 commit ff1314d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lighthouse-core/report/html/report-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@
/* 12% was determined to be a decent narrow width, but wide enough for column headings */
.lh-table-column--url + th.lh-table-column--bytes,
.lh-table-column--url + .lh-table-column--bytes + th.lh-table-column--bytes,
.lh-table-column--url + .lh-table-column--ms,
.lh-table-column--url + .lh-table-column--ms,
.lh-table-column--url + .lh-table-column--ms + th.lh-table-column--bytes,
.lh-table-column--url + .lh-table-column--bytes + th.lh-table-column--timespanMs {
width: 12%;
Expand Down Expand Up @@ -1036,6 +1036,7 @@
z-index: 1;
will-change: opacity;
right: 0;
pointer-events: none;
}

.tooltip::before {
Expand All @@ -1053,5 +1054,5 @@
@keyframes fadeInTooltip {
0% { opacity: 0; }
75% { opacity: 1; }
100% { opacity: 1; filter: drop-shadow(1px 0px 1px #aaa) drop-shadow(0px 2px 4px hsla(206, 6%, 25%, 0.15)); }
100% { opacity: 1; filter: drop-shadow(1px 0px 1px #aaa) drop-shadow(0px 2px 4px hsla(206, 6%, 25%, 0.15)); pointer-events: auto; }
}

0 comments on commit ff1314d

Please sign in to comment.