aboutsummaryrefslogtreecommitdiff
path: root/docs/assets
diff options
context:
space:
mode:
Diffstat (limited to 'docs/assets')
-rw-r--r--docs/assets/css/bootstrap.css16
-rw-r--r--docs/assets/js/application.js2
2 files changed, 17 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index aa250e0c7..43d391acf 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1888,6 +1888,18 @@ table {
-moz-border-radius-bottomright: 4px;
}
+.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ -moz-border-radius-bottomleft: 0;
+}
+
+.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -moz-border-radius-bottomright: 0;
+}
+
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
@@ -4151,6 +4163,10 @@ input[type="button"].btn-block {
color: #ffffff;
}
+.navbar-inverse .brand {
+ color: #999999;
+}
+
.navbar-inverse .navbar-text {
color: #999999;
}
diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js
index 5baab3935..f6c7849c3 100644
--- a/docs/assets/js/application.js
+++ b/docs/assets/js/application.js
@@ -89,7 +89,7 @@
})
// request built javascript
- $('.download-btn').on('click', function () {
+ $('.download-btn .btn').on('click', function () {
var css = $("#components.download input:checked")
.map(function () { return this.value })