removing prefixed border radius properties
Chris Rees
utisoft at gmail.com
Wed Feb 13 15:31:55 UTC 2013
On 13 Feb 2013 14:09, "Eitan Adler" <lists at eitanadler.com> wrote:
>
> Almost all these values were obtained from compatibility tables
> maintained by either QuirksMode or Mozilla.
>
> Tested on Chrome & Firefox on the most recent version of the port on
> FreeBSD. I was unable to test on any windows machine.
>
> Of note: in the third hunk the "real" value and the prefixed values
differ.
>
> Thoughts?
>
>
> commit 278a3bf14a508c1efbd9dc64655bdc808e44be1c
> Author: Eitan Adler <lists at eitanadler.com>
> Date: Wed Feb 13 08:58:44 2013 -0500
>
> border-radius is supported by
> IE 9+
> Fx 4+
> Chrome 4+
> Safari 5+
>
> Remove Support for
> Fx before 4.0
> Chrome between 0.2 and 4.0
> Safari between 3.0 and 5.0
>
> diff --git a/en_US.ISO8859-1/htdocs/layout/css/layout.css
> b/en_US.ISO8859-1/htdocs/layout/css/layout.css
> index 6025fe6..2be7ac0 100644
> --- a/en_US.ISO8859-1/htdocs/layout/css/layout.css
> +++ b/en_US.ISO8859-1/htdocs/layout/css/layout.css
> @@ -402,9 +402,6 @@
> width: 130px;
> height: 30px;
> background-color: #D8D8D8;
> - -moz-border-radius: 10px;
> - -webkit-border-radius: 10px;
> - -khtml-border-radius: 10px;
> border-radius: 10px;
> }
>
> @@ -438,9 +435,6 @@
> width: 180px;
> height: 25px;
> background-color: white;
> - -moz-border-radius: 10px;
> - -webkit-border-radius: 10px;
> - -khtml-border-radius: 10px;
> border-radius: 10px;
> }
>
> @@ -475,9 +469,6 @@
> width: 190px;
> height: 35px;
> background-color: #FACC2E;
> - -moz-border-radius: 10px;
> - -webkit-border-radius: 10px;
> - -khtml-border-radius: 10px;
> border-radius: 15px;
> }
>
Do they hurt? Many companies/workplaces still use older IE for example.
Chris
More information about the freebsd-doc
mailing list