[MessageTray] remove bottom rounded corners

https://bugzilla.gnome.org/show_bug.cgi?id=610726
This commit is contained in:
Dan Winship 2010-03-15 13:55:08 -04:00
parent 994b4c0007
commit 68b943d8ea

View File

@ -662,8 +662,14 @@ StTooltip {
#notification {
font-size: 16px;
border-radius: 5px;
background: rgba(0,0,0,0.9);
border-radius: 5px 5px 0px 0px;
/* FIXME: currently StWidget can only draw non-uniform corners
* if the background is a gradient. So, we draw a gradient
* from black to black...
*/
background-gradient-direction: vertical;
background-gradient-start: rgba(0,0,0,0.9);
background-gradient-end: rgba(0,0,0,0.9);
color: white;
padding: 2px 10px 10px 10px;
spacing-rows: 5px;