diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 644dd58f7a..71552e7f80 100644
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 57c30ab63c..e16383b1cc 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -33,7 +33,7 @@ html {
-ms-text-size-adjust: 100%;
}
a:focus {
- outline: thin dotted;
+ outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
@@ -675,7 +675,7 @@ select:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
- outline: thin dotted;
+ outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
@@ -1749,7 +1749,7 @@ table .span12 {
transition: background-position 0.1s linear;
}
.btn:focus {
- outline: thin dotted;
+ outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
diff --git a/docs/base-css.html b/docs/base-css.html
index d67d1bd554..7ab18108c1 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -1266,37 +1266,37 @@ For example, <code>section</code> should be wrapped as inline.
- Default |
+ |
.btn |
Standard gray button with gradient |
- Primary |
+ |
.btn-primary |
Provides extra visual weight and identifies the primary action in a set of buttons |
- Info |
+ |
.btn-info |
Used as an alternate to the default styles |
- Success |
+ |
.btn-success |
Indicates a successful or positive action |
- Warning |
+ |
.btn-warning |
Indicates caution should be taken with this action |
- Danger |
+ |
.btn-danger |
Indicates a dangerous or potentially negative action |
- Inverse |
+ |
.btn-inverse |
Alternate dark gray button, not tied to a semantic action or use |
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache
index 4b2f379c58..f3d18ffd02 100644
--- a/docs/templates/pages/base-css.mustache
+++ b/docs/templates/pages/base-css.mustache
@@ -1190,37 +1190,37 @@
- {{_i}}Default{{/i}} |
+ |
.btn |
{{_i}}Standard gray button with gradient{{/i}} |
- {{_i}}Primary{{/i}} |
+ |
.btn-primary |
{{_i}}Provides extra visual weight and identifies the primary action in a set of buttons{{/i}} |
- {{_i}}Info{{/i}} |
+ |
.btn-info |
{{_i}}Used as an alternate to the default styles{{/i}} |
- {{_i}}Success{{/i}} |
+ |
.btn-success |
{{_i}}Indicates a successful or positive action{{/i}} |
- {{_i}}Warning{{/i}} |
+ |
.btn-warning |
{{_i}}Indicates caution should be taken with this action{{/i}} |
- {{_i}}Danger{{/i}} |
+ |
.btn-danger |
{{_i}}Indicates a dangerous or potentially negative action{{/i}} |
- {{_i}}Inverse{{/i}} |
+ |
.btn-inverse |
{{_i}}Alternate dark gray button, not tied to a semantic action or use{{/i}} |
diff --git a/less/mixins.less b/less/mixins.less
index 93bb229b51..96af8219d8 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -25,7 +25,7 @@
// ------------------
.tab-focus() {
// Default
- outline: thin dotted;
+ outline: thin dotted #333;
// Webkit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;