2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

remove .border-radius mixin and replace with standard border-radius property, since -webkit-* and -moz-* are only needed for older versions

This commit is contained in:
Mark Otto
2012-09-30 23:11:54 -07:00
parent 0cd186183c
commit 9872902e47
26 changed files with 152 additions and 322 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ a:hover {
// Rounded corners
.img-rounded {
.border-radius(6px);
border-radius: 6px;
}
// Add polaroid-esque trim
@@ -48,5 +48,5 @@ a:hover {
// Perfect circle
.img-circle {
.border-radius(500px); // crank the border-radius so it works with most reasonably sized images
border-radius: 500px; // crank the border-radius so it works with most reasonably sized images
}