svn commit: r41138 - head/en_US.ISO8859-1/htdocs/layout/css

Eitan Adler eadler at FreeBSD.org
Fri Mar 8 13:48:22 UTC 2013


Author: eadler
Date: Fri Mar  8 13:48:22 2013
New Revision: 41138
URL: http://svnweb.freebsd.org/changeset/doc/41138

Log:
  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
  
  Of note: in the third hunk the "real" value and the prefixed values
  differ.
  
  Tested on Chrome & Firefox 19
  
  Approved by:	bcr (mentor)

Modified:
  head/en_US.ISO8859-1/htdocs/layout/css/layout.css

Modified: head/en_US.ISO8859-1/htdocs/layout/css/layout.css
==============================================================================
--- head/en_US.ISO8859-1/htdocs/layout/css/layout.css	Fri Mar  8 13:26:31 2013	(r41137)
+++ head/en_US.ISO8859-1/htdocs/layout/css/layout.css	Fri Mar  8 13:48:22 2013	(r41138)
@@ -401,9 +401,6 @@
   padding: 0;
   width: 130px;
   background-color: #D8D8D8;
-  -moz-border-radius: 10px;
-  -webkit-border-radius: 10px;
-  -khtml-border-radius: 10px;
   border-radius: 10px;
 }
 
@@ -436,9 +433,6 @@
   padding: 0;
   width: 180px;
   background-color: white;
-  -moz-border-radius: 10px;
-  -webkit-border-radius: 10px;
-  -khtml-border-radius: 10px;
   border-radius: 10px;
 }
 
@@ -472,9 +466,6 @@
   padding: 0;
   width: 190px;
   background-color: #FACC2E;
-  -moz-border-radius: 10px;
-  -webkit-border-radius: 10px;
-  -khtml-border-radius: 10px;
   border-radius: 15px;
 }
 


More information about the svn-doc-all mailing list