h3 {
background-image: -moz-linear-gradient(top, red, blue);
background-image: -webkit-gradient(linear, left top, left bottom,
from(red), to(blue));
}
but result is only
h3 {
background-image: -webkit-gradient(linear, left top, left bottom, from
(red), to(blue));
}
Could you fix this bug? May be if value of property starts with "-" or
"-moz|-webkit|-o-," then don't reduce lines...
div {
/* IE */
filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5,
OffY=5, Color='gray');
/* slightly different syntax for IE8 */
-ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=5,
OffY=5, Color='gray')";
}
is reduced to:
div {
filter: progid;
-ms-filter: "progid;
}
:-(
yes, I understand, but in this situation it is correct css, so could
you change or rebuild this feature? ;)
Or can you give me tip how can I use it?
source is:
.box h4 {
background-image: -moz-linear-gradient(top, #51A8DA, #368CCA);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from
(#51A8DA), to(#368CCA));
}
end result is:
.box h4 {
background-image: -moz-linear-gradient(top, #51A8DA, #368CCA);
background-image: var_rule: -webkit-gradient(linear, 0% 0%, 0% 100%,
from(#51A8DA), to(#368CCA));
}
there is "var_rule" in second row .... I absolutely don't understand
why, I copied xcss dir 2 times and result is same ....
is your hack correct in all cases?
thank you very much.
On Jan 25, 4:45 pm, Anton Pawlik <anton.paw...@googlemail.com> wrote:
> okok :D
>
> 2010/1/25 gawan <marek.smo...@gmail.com>