diff options
| author | Jacob Thornton <[email protected]> | 2012-01-22 20:31:58 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-01-22 20:31:58 -0800 |
| commit | 36d2679f8358f91d8a2c746e0f14b3500b73c163 (patch) | |
| tree | 990e06ba8a27a78ff5c83e9774a44f04fdf45c07 | |
| parent | 36d56fb1ba803358e8244189fbef883290af87d0 (diff) | |
| download | bootstrap-36d2679f8358f91d8a2c746e0f14b3500b73c163.tar.xz bootstrap-36d2679f8358f91d8a2c746e0f14b3500b73c163.zip | |
give default valuse for border-radius-custom
| -rw-r--r-- | bootstrap.css | 2 | ||||
| -rw-r--r-- | lib/mixins.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.css b/bootstrap.css index d96c2277b..c40172304 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Sun Jan 22 20:11:39 PST 2012 + * Date: Sun Jan 22 20:31:51 PST 2012 */ html, body { margin: 0; diff --git a/lib/mixins.less b/lib/mixins.less index 5a3952f3a..a54f6762f 100644 --- a/lib/mixins.less +++ b/lib/mixins.less @@ -137,7 +137,7 @@ -moz-border-radius: @radius; border-radius: @radius; } -.border-radius-custom(@topLeft, @topRight, @bottomRight, @bottomLeft) { +.border-radius-custom(@topLeft: 0, @topRight: 0, @bottomRight: 0, @bottomLeft: 0) { -webkit-border-top-left-radius: @topLeft; -moz-border-radius-topleft: @topLeft; border-top-left-radius: @topLeft; |
