GNOME Bugzilla – Bug 704735
One pixel of curve too dark in upper rounded corners
Last modified: 2014-03-10 10:05:01 UTC
Created attachment 249880 [details] Screenshot of the bug I don't know how to describe it.
It also happens in upper left rounded corner.
I've found what these pixels are, they come from box-shadows.
Created attachment 271387 [details] [review] Fix dark pixels in outer top corners of leftmost and rightmost linked buttons The dark pixels are actually pieces of background. This rule: /* Middle button */ .linked .button, ... { border-right-width: 0; border-left-width: 0; border-image-width: 3px 0 4px 0; border-radius: 0; } removed the left and right borders, but the next rules: /* Rightmost button */ .linked .button:last-child, ... { border-right-width: 0; border-left-width: 1px; border-image-width: 3px 0 4px 3px; border-bottom-right-radius: 0; border-top-right-radius: 0; } /* Leftmost button */ .linked .button:first-child, ... { border-right-width: 1px; border-left-width: 0; border-image-width: 3px 3px 4px 0; border-bottom-left-radius: 0; border-top-left-radius: 0; } restored border images, but not the border widths, so the borders were drawn directly over the background.
Attachment 271387 [details] pushed as f622129 - Fix dark pixels in outer top corners of leftmost and rightmost linked buttons