Date: Wed, 13 Feb 2013 09:08:48 -0500 From: Eitan Adler <lists@eitanadler.com> To: freebsd-doc@freebsd.org Subject: removing prefixed border radius properties Message-ID: <CAF6rxgnvLTUTRWegm5Hdufz201iB7vS-GYTmESOhUc1TDKFrig@mail.gmail.com>
next in thread | raw e-mail | index | archive | help
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@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; } -- Eitan Adler
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAF6rxgnvLTUTRWegm5Hdufz201iB7vS-GYTmESOhUc1TDKFrig>