Use linear-gradient instead of -gtk-gradient

pull/70/head
Satyajit Sahoo 2013-09-14 22:25:38 +05:30
parent 1848c13bb0
commit a83186c3da
2 changed files with 10 additions and 12 deletions

View File

@ -386,10 +386,10 @@ GraniteWidgetsPopOver {
.popover_bg {
background-color: transparent;
background-image: -gtk-gradient(linear,
left top, left bottom,
from (@menu_bg_color),
to (@menu_bg_color));
background-image: linear-gradient(to bottom,
@menu_bg_color,
@menu_bg_color
);
}
GraniteWidgetsPopOver .sidebar.view,
@ -622,10 +622,10 @@ BirdieWidgetsTweetList * {
.shadow {
background-color: transparent;
background-image: -gtk-gradient(linear,
left top, left bottom,
from (rgba(0, 0, 0, 0.3)),
to (transparent));
background-image: linear-gradient(to bottom,
rgba(0, 0, 0, 0.3),
transparent
);
}
.composited-indicator,

View File

@ -539,10 +539,8 @@ GtkIconView.view.cell:selected:focus {
border-style: solid;
border-color: shade(@theme_selected_bg_color, 0.9);
border-radius: 2px;
background-image: -gtk-gradient(linear, left top, left bottom,
from (@theme_selected_bg_color),
to (@theme_selected_bg_color));
background-color: @theme_selected_bg_color;
background-image: none;
color: @theme_selected_fg_color;
}