Use linear-gradient instead of -gtk-gradient
parent
1848c13bb0
commit
a83186c3da
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue