HC: really use radial-gradient() in place of -gtk-gradient()

Regenerate the css from sass..
This commit is contained in:
Lapo Calamandrei 2016-11-23 16:39:14 +01:00
parent eb5b8b22e2
commit 5ab18062a3
2 changed files with 6 additions and 6 deletions

View File

@ -372,9 +372,9 @@ entry:drop(active):not(:only-child) + combobox > box > button.combo {
***********/
@keyframes needs_attention {
from {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#ddd), to(transparent)); }
background-image: radial-gradient(#ddd 0%, rgba(221, 221, 221, 0) 0%); }
to {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#ddd), to(transparent)); } }
background-image: radial-gradient(#ddd 68%, rgba(221, 221, 221, 0) 70%); } }
button.titlebutton, button {
min-height: 24px;
min-width: 16px;
@ -840,7 +840,7 @@ button.destructive-action {
.stack-switcher > button.needs-attention > label,
.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
animation: needs_attention 150ms ease-in;
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#ddd), to(transparent));
background-image: radial-gradient(#ddd 68%, rgba(221, 221, 221, 0) 70%);
background-size: 6px 6px;
background-repeat: no-repeat;
background-position: right 3px; }

View File

@ -372,9 +372,9 @@ entry:drop(active):not(:only-child) + combobox > box > button.combo {
***********/
@keyframes needs_attention {
from {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#000), to(transparent)); }
background-image: radial-gradient(#000 0%, transparent 0%); }
to {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#000), to(transparent)); } }
background-image: radial-gradient(#000 68%, transparent 70%); } }
button.titlebutton, button {
min-height: 24px;
min-width: 16px;
@ -842,7 +842,7 @@ button.destructive-action {
.stack-switcher > button.needs-attention > label,
.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
animation: needs_attention 150ms ease-in;
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#000), to(transparent));
background-image: radial-gradient(#000 68%, transparent 70%);
background-size: 6px 6px;
background-repeat: no-repeat;
background-position: right 3px; }