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

View File

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