diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 0114d4e2f75d5995e76862bd9a5372a4011c2a15..c632f371eb1ba4e5118046679f7225b5d4874abc 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -4659,8 +4659,8 @@ input[type="submit"].btn.btn-mini {
 }
 
 .navbar .nav li.dropdown > a:hover .caret {
-  border-top-color: #555555;
-  border-bottom-color: #555555;
+  border-top-color: #333333;
+  border-bottom-color: #333333;
 }
 
 .navbar .nav li.dropdown.open > .dropdown-toggle,
diff --git a/less/navbar.less b/less/navbar.less
index b5793beca80ab68f82bcc6b20e833f3b6346a1f5..1e488d89831ec226ceed0c41247c603ffc097e6c 100644
--- a/less/navbar.less
+++ b/less/navbar.less
@@ -336,8 +336,8 @@
 
 // Caret should match text color on hover
 .navbar .nav li.dropdown > a:hover .caret {
-  border-top-color: @navbarLinkColorActive;
-  border-bottom-color: @navbarLinkColorActive;
+  border-top-color: @navbarLinkColorHover;
+  border-bottom-color: @navbarLinkColorHover;
 }
 
 // Remove background color from open dropdown
diff --git a/less/tables.less b/less/tables.less
index 73522996c4dc2b5200421e68ac70cd68ca158c36..aa01e102599c6f526346a80a1aeb4c09c716dbb4 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -122,7 +122,6 @@ table {
     .border-bottom-right-radius(0);
   }
 
-
   // Special fixes to round the left border on the first td/th
   caption + thead tr:first-child th:first-child,
   caption + tbody tr:first-child td:first-child,