0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00
This commit is contained in:
Mark Otto 2017-12-22 21:02:36 -08:00
parent eb60521c03
commit ab1808742d
4 changed files with 34 additions and 17 deletions

View File

@ -1780,7 +1780,7 @@ pre code {
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive-sm.table-bordered {
.table-responsive-sm > .table-bordered {
border: 0;
}
}
@ -1793,7 +1793,7 @@ pre code {
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive-md.table-bordered {
.table-responsive-md > .table-bordered {
border: 0;
}
}
@ -1806,7 +1806,7 @@ pre code {
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive-lg.table-bordered {
.table-responsive-lg > .table-bordered {
border: 0;
}
}
@ -1819,7 +1819,7 @@ pre code {
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive-xl.table-bordered {
.table-responsive-xl > .table-bordered {
border: 0;
}
}
@ -1832,7 +1832,7 @@ pre code {
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive.table-bordered {
.table-responsive > .table-bordered {
border: 0;
}
@ -4894,6 +4894,7 @@ tbody.collapse.show {
}
.list-group-item:focus, .list-group-item:hover {
z-index: 1;
text-decoration: none;
}
@ -4903,7 +4904,7 @@ tbody.collapse.show {
}
.list-group-item.active {
z-index: 1;
z-index: 2;
color: #fff;
background-color: #007bff;
border-color: #007bff;
@ -5811,7 +5812,9 @@ button.close {
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;
}
@ -5819,7 +5822,9 @@ a.bg-primary:focus, a.bg-primary:hover {
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;
}
@ -5827,7 +5832,9 @@ a.bg-secondary:focus, a.bg-secondary:hover {
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;
}
@ -5835,7 +5842,9 @@ a.bg-success:focus, a.bg-success:hover {
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;
}
@ -5843,7 +5852,9 @@ a.bg-info:focus, a.bg-info:hover {
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;
}
@ -5851,7 +5862,9 @@ a.bg-warning:focus, a.bg-warning:hover {
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;
}
@ -5859,7 +5872,9 @@ a.bg-danger:focus, a.bg-danger:hover {
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;
}
@ -5867,7 +5882,9 @@ a.bg-light:focus, a.bg-light:hover {
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;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long