diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
new file mode 100644
index 0000000000..95241ab826
Binary files /dev/null and b/docs/assets/bootstrap.zip differ
diff --git a/docs/download.html b/docs/download.html
index c0e3b9cf01..bb10bdf63d 100644
--- a/docs/download.html
+++ b/docs/download.html
@@ -368,6 +368,8 @@
+
+
diff --git a/docs/less.html b/docs/less.html
index 3542858156..4fe26af56c 100644
--- a/docs/less.html
+++ b/docs/less.html
@@ -453,6 +453,10 @@
@inputBorder |
#ccc |
+
+ @inputBorderRadius |
+ 3px |
+
@inputDisabledBackground |
@grayLighter |
diff --git a/docs/templates/pages/download.mustache b/docs/templates/pages/download.mustache
index 0e73c44a44..e9c27588b4 100644
--- a/docs/templates/pages/download.mustache
+++ b/docs/templates/pages/download.mustache
@@ -291,6 +291,8 @@
+
+
diff --git a/docs/templates/pages/less.mustache b/docs/templates/pages/less.mustache
index 5005fb1661..5345cbf974 100644
--- a/docs/templates/pages/less.mustache
+++ b/docs/templates/pages/less.mustache
@@ -376,6 +376,10 @@
@inputBorder |
#ccc |
+
+ @inputBorderRadius |
+ 3px |
+
@inputDisabledBackground |
@grayLighter |
diff --git a/less/forms.less b/less/forms.less
index 240de5ed24..d8cb549092 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -72,7 +72,7 @@ select,
line-height: @baseLineHeight;
color: @gray;
border: 1px solid @inputBorder;
- .border-radius(3px);
+ .border-radius(@inputBorderRadius);
}
.uneditable-textarea {
width: auto;
@@ -372,7 +372,7 @@ select:focus:required:invalid {
margin-bottom: 0; // prevent bottom margin from screwing up alignment in stacked forms
*margin-left: 0;
vertical-align: middle;
- .border-radius(0 3px 3px 0);
+ .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
// Make input on top when focused so blue border and shadow always show
&:focus {
z-index: 2;
@@ -397,7 +397,7 @@ select:focus:required:invalid {
}
.add-on,
.btn {
- .border-radius(3px 0 0 3px);
+ .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
}
.active {
background-color: lighten(@green, 30);
@@ -414,7 +414,7 @@ select:focus:required:invalid {
input,
select,
.uneditable-input {
- .border-radius(3px 0 0 3px);
+ .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
}
.uneditable-input {
border-left-color: #eee;
@@ -423,7 +423,7 @@ select:focus:required:invalid {
.add-on,
.btn {
margin-left: -1px;
- .border-radius(0 3px 3px 0);
+ .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
// Remove all border-radius for inputs with both prepend and append
@@ -436,12 +436,12 @@ select:focus:required:invalid {
.add-on:first-child,
.btn:first-child {
margin-right: -1px;
- .border-radius(3px 0 0 3px);
+ .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
}
.add-on:last-child,
.btn:last-child {
margin-left: -1px;
- .border-radius(0 3px 3px 0);
+ .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
}
}
diff --git a/less/variables.less b/less/variables.less
index 30dd73b8b8..a9e3d4082c 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -96,6 +96,7 @@
// -------------------------
@inputBackground: @white;
@inputBorder: #ccc;
+@inputBorderRadius: 3px;
@inputDisabledBackground: @grayLighter;
@formActionsBackground: #f5f5f5;