After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 704735 - One pixel of curve too dark in upper rounded corners
One pixel of curve too dark in upper rounded corners
Status: RESOLVED FIXED
Product: gnome-themes-standard
Classification: Core
Component: Adwaita GTK3 theme
3.8.x
Other Linux
: Normal normal
: ---
Assigned To: gnome-themes-standard-maint
gnome-themes-standard-maint
Depends on:
Blocks:
 
 
Reported: 2013-07-23 10:17 UTC by lamefun
Modified: 2014-03-10 10:05 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Screenshot of the bug (7.29 KB, image/png)
2013-07-23 10:17 UTC, lamefun
  Details
Fix dark pixels in outer top corners of leftmost and rightmost linked buttons (1.21 KB, patch)
2014-03-09 22:04 UTC, lamefun
committed Details | Review

Description lamefun 2013-07-23 10:17:47 UTC
Created attachment 249880 [details]
Screenshot of the bug

I don't know how to describe it.
Comment 1 lamefun 2013-07-24 07:02:47 UTC
It also happens in upper left rounded corner.
Comment 2 lamefun 2014-01-17 14:25:00 UTC
I've found what these pixels are, they come from box-shadows.
Comment 3 lamefun 2014-03-09 22:04:50 UTC
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.
Comment 4 Jakub Steiner 2014-03-10 10:04:56 UTC
Attachment 271387 [details] pushed as f622129 - Fix dark pixels in outer top corners of leftmost and rightmost linked buttons