Commit ab180874 authored by Mark Otto's avatar Mark Otto
Browse files

dist

parent eb60521c
Showing with 32 additions and 15 deletions
+32 -15
...@@ -1780,7 +1780,7 @@ pre code { ...@@ -1780,7 +1780,7 @@ pre code {
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
} }
.table-responsive-sm.table-bordered { .table-responsive-sm > .table-bordered {
border: 0; border: 0;
} }
} }
...@@ -1793,7 +1793,7 @@ pre code { ...@@ -1793,7 +1793,7 @@ pre code {
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
} }
.table-responsive-md.table-bordered { .table-responsive-md > .table-bordered {
border: 0; border: 0;
} }
} }
...@@ -1806,7 +1806,7 @@ pre code { ...@@ -1806,7 +1806,7 @@ pre code {
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
} }
.table-responsive-lg.table-bordered { .table-responsive-lg > .table-bordered {
border: 0; border: 0;
} }
} }
...@@ -1819,7 +1819,7 @@ pre code { ...@@ -1819,7 +1819,7 @@ pre code {
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
} }
.table-responsive-xl.table-bordered { .table-responsive-xl > .table-bordered {
border: 0; border: 0;
} }
} }
...@@ -1832,7 +1832,7 @@ pre code { ...@@ -1832,7 +1832,7 @@ pre code {
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
} }
.table-responsive.table-bordered { .table-responsive > .table-bordered {
border: 0; border: 0;
} }
...@@ -4894,6 +4894,7 @@ tbody.collapse.show { ...@@ -4894,6 +4894,7 @@ tbody.collapse.show {
} }
.list-group-item:focus, .list-group-item:hover { .list-group-item:focus, .list-group-item:hover {
z-index: 1;
text-decoration: none; text-decoration: none;
} }
...@@ -4903,7 +4904,7 @@ tbody.collapse.show { ...@@ -4903,7 +4904,7 @@ tbody.collapse.show {
} }
.list-group-item.active { .list-group-item.active {
z-index: 1; z-index: 2;
color: #fff; color: #fff;
background-color: #007bff; background-color: #007bff;
border-color: #007bff; border-color: #007bff;
...@@ -5811,7 +5812,9 @@ button.close { ...@@ -5811,7 +5812,9 @@ button.close {
background-color: #007bff !important; background-color: #007bff !important;
} }
a.bg-primary:focus, a.bg-primary:hover { a.bg-primary:focus, a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
background-color: #0062cc !important; background-color: #0062cc !important;
} }
...@@ -5819,7 +5822,9 @@ a.bg-primary:focus, a.bg-primary:hover { ...@@ -5819,7 +5822,9 @@ a.bg-primary:focus, a.bg-primary:hover {
background-color: #868e96 !important; background-color: #868e96 !important;
} }
a.bg-secondary:focus, a.bg-secondary:hover { a.bg-secondary:focus, a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
background-color: #6c757d !important; background-color: #6c757d !important;
} }
...@@ -5827,7 +5832,9 @@ a.bg-secondary:focus, a.bg-secondary:hover { ...@@ -5827,7 +5832,9 @@ a.bg-secondary:focus, a.bg-secondary:hover {
background-color: #28a745 !important; background-color: #28a745 !important;
} }
a.bg-success:focus, a.bg-success:hover { a.bg-success:focus, a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
background-color: #1e7e34 !important; background-color: #1e7e34 !important;
} }
...@@ -5835,7 +5842,9 @@ a.bg-success:focus, a.bg-success:hover { ...@@ -5835,7 +5842,9 @@ a.bg-success:focus, a.bg-success:hover {
background-color: #17a2b8 !important; background-color: #17a2b8 !important;
} }
a.bg-info:focus, a.bg-info:hover { a.bg-info:focus, a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
background-color: #117a8b !important; background-color: #117a8b !important;
} }
...@@ -5843,7 +5852,9 @@ a.bg-info:focus, a.bg-info:hover { ...@@ -5843,7 +5852,9 @@ a.bg-info:focus, a.bg-info:hover {
background-color: #ffc107 !important; background-color: #ffc107 !important;
} }
a.bg-warning:focus, a.bg-warning:hover { a.bg-warning:focus, a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
background-color: #d39e00 !important; background-color: #d39e00 !important;
} }
...@@ -5851,7 +5862,9 @@ a.bg-warning:focus, a.bg-warning:hover { ...@@ -5851,7 +5862,9 @@ a.bg-warning:focus, a.bg-warning:hover {
background-color: #dc3545 !important; background-color: #dc3545 !important;
} }
a.bg-danger:focus, a.bg-danger:hover { a.bg-danger:focus, a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
background-color: #bd2130 !important; background-color: #bd2130 !important;
} }
...@@ -5859,7 +5872,9 @@ a.bg-danger:focus, a.bg-danger:hover { ...@@ -5859,7 +5872,9 @@ a.bg-danger:focus, a.bg-danger:hover {
background-color: #f8f9fa !important; background-color: #f8f9fa !important;
} }
a.bg-light:focus, a.bg-light:hover { a.bg-light:focus, a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
background-color: #dae0e5 !important; background-color: #dae0e5 !important;
} }
...@@ -5867,7 +5882,9 @@ a.bg-light:focus, a.bg-light:hover { ...@@ -5867,7 +5882,9 @@ a.bg-light:focus, a.bg-light:hover {
background-color: #343a40 !important; background-color: #343a40 !important;
} }
a.bg-dark:focus, a.bg-dark:hover { a.bg-dark:focus, a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
background-color: #1d2124 !important; background-color: #1d2124 !important;
} }
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment