[Webkit-unassigned] [Bug 149274] Web Inspector: Inactive window may cause many layers to be created due to Dashboard opacity
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Sep 17 11:18:34 PDT 2015
https://bugs.webkit.org/show_bug.cgi?id=149274
--- Comment #4 from Joseph Pecoraro <joepeck at webkit.org> ---
The issue appears to be because of the opacity:
body.latest-mac.window-inactive .toolbar .dashboard-container {
opacity: 0.65;
...
}
Which contains an animating element. This then uses a cascade of overlapping elements.
A possible workaround might be:
body.latest-mac.window-inactive .toolbar .dashboard-container > *
opacity: 0.65;
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150917/f86ba8dd/attachment.html>
More information about the webkit-unassigned
mailing list