Closed (fixed)
Project:
Edit
Version:
7.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Task
Assigned:
Issue tags:
Reporter:
Created:
26 Oct 2012 at 20:20 UTC
Updated:
4 Jan 2014 at 02:42 UTC
Jump to comment: Most recent
This kind of CSS is pointless and crappy:
/* Firefox v3.6+ */
background-image:-moz-linear-gradient(26% 0% -90deg,rgb(245,245,245) 0%,rgb(204,204,204) 100%);
/* safari v4.0+ and by Chrome v3.0+ */
background-image:-webkit-gradient(linear,26% 0%,26% 94%,color-stop(0, rgb(245,245,245)),color-stop(1, rgb(204,204,204)));
/* Chrome v10.0+ and by safari nightly build*/
background-image:-webkit-linear-gradient(-90deg,rgb(245,245,245) 0%,rgb(204,204,204) 100%);
/* Opera v11.10+ */
background-image:-o-linear-gradient(-90deg,rgb(245,245,245) 0%,rgb(204,204,204) 100%);
/* IE v10+ */
background-image:-ms-linear-gradient(-90deg,rgb(245,245,245) 0%,rgb(204,204,204) 100%);
background-image:linear-gradient(-90deg,rgb(245,245,245) 0%,rgb(204,204,204) 100%);
E.g. Firefox unprefixed this a while ago, Opera also, the old Webkit syntax is pointless to support, Microsoft apparently never implemented it (thanks @jessebeach, didn't know).
Comments
Comment #1
wim leersFixed in D8: http://drupalcode.org/project/edit.git/commit/8036080.
Comment #2
nod_and ported from D8.
Comment #3
webchick