Adwaita: Fix 'add color' button corners

The specification for border-radius goes
top-left top-right bottom-right bottom-left.
The css for the add button in the color
chooser got this wrong, and was showing
a broken top-right corner.

Closes: https://gitlab.gnome.org/GNOME/gtk/issues/1856
This commit is contained in:
Matthias Clasen 2019-05-01 17:18:39 +00:00
parent 3ce6a710a3
commit e09beee62a

View File

@ -4342,7 +4342,7 @@ colorswatch {
}
&#add-color-button {
border-radius: $_colorswatch_radius $_colorswatch_radius 0 0;
border-radius: $_colorswatch_radius 0 0 $_colorswatch_radius;
&:only-child { border-radius: $_colorswatch_radius; }