diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 4b7227a7d1..7f6f5dd768 100644
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
diff --git a/docs/less.html b/docs/less.html
index a9ae68f9e9..d6a0fd64a9 100644
--- a/docs/less.html
+++ b/docs/less.html
@@ -704,17 +704,17 @@
.size() |
- @height: 5px, @width: 5px |
+ @height @width |
Quickly set the height and width on one line |
.square() |
- @size: 5px |
+ @size |
Builds on .size() to set the width and height as same value |
.opacity() |
- @opacity: 100 |
+ @opacity |
Set, in whole numbers, the opacity percentage (e.g., "50" or "75") |
@@ -822,12 +822,12 @@
.border-radius() |
- @radius: 5px |
+ @radius |
Round the corners of an element. Can be a single value or four space-separated values |
.box-shadow() |
- @shadow: 0 1px 3px rgba(0,0,0,.25) |
+ @shadow |
Add a drop shadow to an element |
@@ -847,7 +847,7 @@
.translate() |
- @x: 0, @y: 0 |
+ @x, @y |
Move an element on the x and y planes |
@@ -882,7 +882,7 @@
.content-columns() |
- @columnCount, @columnGap: @gridColumnGutter |
+ @columnCount, @columnGap: @gridGutterWidth |
Make the content of any element use CSS3 columns |
diff --git a/docs/templates/pages/less.mustache b/docs/templates/pages/less.mustache
index 280c39318b..8b7f4495d0 100644
--- a/docs/templates/pages/less.mustache
+++ b/docs/templates/pages/less.mustache
@@ -627,17 +627,17 @@
.size() |
- @height: 5px, @width: 5px |
+ @height @width |
{{_i}}Quickly set the height and width on one line{{/i}} |
.square() |
- @size: 5px |
+ @size |
{{_i}}Builds on .size() to set the width and height as same value{{/i}} |
.opacity() |
- @opacity: 100 |
+ @opacity |
{{_i}}Set, in whole numbers, the opacity percentage (e.g., "50" or "75"){{/i}} |
@@ -745,12 +745,12 @@
.border-radius() |
- @radius: 5px |
+ @radius |
{{_i}}Round the corners of an element. Can be a single value or four space-separated values{{/i}} |
.box-shadow() |
- @shadow: 0 1px 3px rgba(0,0,0,.25) |
+ @shadow |
{{_i}}Add a drop shadow to an element{{/i}} |
@@ -770,7 +770,7 @@
.translate() |
- @x: 0, @y: 0 |
+ @x, @y |
{{_i}}Move an element on the x and y planes{{/i}} |
@@ -805,7 +805,7 @@
.content-columns() |
- @columnCount, @columnGap: @gridColumnGutter |
+ @columnCount, @columnGap: @gridGutterWidth |
{{_i}}Make the content of any element use CSS3 columns{{/i}} |