This commit is contained in:
Mark Otto 2018-12-21 15:35:15 -08:00
parent fca7531897
commit 2162cb1806
6 changed files with 96 additions and 40 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1504,6 +1504,7 @@ pre code {
.table { .table {
width: 100%; width: 100%;
margin-bottom: 1rem; margin-bottom: 1rem;
color: #212529;
background-color: transparent; background-color: transparent;
} }
@ -1558,6 +1559,7 @@ pre code {
} }
.table-hover tbody tr:hover { .table-hover tbody tr:hover {
color: #212529;
background-color: rgba(0, 0, 0, 0.075); background-color: rgba(0, 0, 0, 0.075);
} }
@ -1754,8 +1756,8 @@ pre code {
.table .thead-dark th { .table .thead-dark th {
color: #fff; color: #fff;
background-color: #212529; background-color: #343a40;
border-color: #32383e; border-color: #454d55;
} }
.table .thead-light th { .table .thead-light th {
@ -1766,13 +1768,13 @@ pre code {
.table-dark { .table-dark {
color: #fff; color: #fff;
background-color: #212529; background-color: #343a40;
} }
.table-dark th, .table-dark th,
.table-dark td, .table-dark td,
.table-dark thead th { .table-dark thead th {
border-color: #32383e; border-color: #454d55;
} }
.table-dark.table-bordered { .table-dark.table-bordered {
@ -1784,6 +1786,7 @@ pre code {
} }
.table-dark.table-hover tbody tr:hover { .table-dark.table-hover tbody tr:hover {
color: #fff;
background-color: rgba(255, 255, 255, 0.075); background-color: rgba(255, 255, 255, 0.075);
} }
@ -2355,6 +2358,8 @@ textarea.form-control {
} }
.form-inline .form-check-input { .form-inline .form-check-input {
position: relative; position: relative;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-top: 0; margin-top: 0;
margin-right: 0.25rem; margin-right: 0.25rem;
margin-left: 0; margin-left: 0;
@ -4983,6 +4988,13 @@ input[type="button"].btn-block {
white-space: nowrap; white-space: nowrap;
vertical-align: baseline; vertical-align: baseline;
border-radius: 0.25rem; border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
.badge {
transition: none;
}
} }
a.badge:hover, a.badge:focus { a.badge:hover, a.badge:focus {
@ -5014,6 +5026,11 @@ a.badge-primary:hover, a.badge-primary:focus {
background-color: #0062cc; background-color: #0062cc;
} }
a.badge-primary:focus, a.badge-primary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.badge-secondary { .badge-secondary {
color: #fff; color: #fff;
background-color: #6c757d; background-color: #6c757d;
@ -5024,6 +5041,11 @@ a.badge-secondary:hover, a.badge-secondary:focus {
background-color: #545b62; background-color: #545b62;
} }
a.badge-secondary:focus, a.badge-secondary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.badge-success { .badge-success {
color: #fff; color: #fff;
background-color: #28a745; background-color: #28a745;
@ -5034,6 +5056,11 @@ a.badge-success:hover, a.badge-success:focus {
background-color: #1e7e34; background-color: #1e7e34;
} }
a.badge-success:focus, a.badge-success.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.badge-info { .badge-info {
color: #fff; color: #fff;
background-color: #17a2b8; background-color: #17a2b8;
@ -5044,6 +5071,11 @@ a.badge-info:hover, a.badge-info:focus {
background-color: #117a8b; background-color: #117a8b;
} }
a.badge-info:focus, a.badge-info.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.badge-warning { .badge-warning {
color: #212529; color: #212529;
background-color: #ffc107; background-color: #ffc107;
@ -5054,6 +5086,11 @@ a.badge-warning:hover, a.badge-warning:focus {
background-color: #d39e00; background-color: #d39e00;
} }
a.badge-warning:focus, a.badge-warning.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.badge-danger { .badge-danger {
color: #fff; color: #fff;
background-color: #dc3545; background-color: #dc3545;
@ -5064,6 +5101,11 @@ a.badge-danger:hover, a.badge-danger:focus {
background-color: #bd2130; background-color: #bd2130;
} }
a.badge-danger:focus, a.badge-danger.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.badge-light { .badge-light {
color: #212529; color: #212529;
background-color: #f8f9fa; background-color: #f8f9fa;
@ -5074,6 +5116,11 @@ a.badge-light:hover, a.badge-light:focus {
background-color: #dae0e5; background-color: #dae0e5;
} }
a.badge-light:focus, a.badge-light.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.badge-dark { .badge-dark {
color: #fff; color: #fff;
background-color: #343a40; background-color: #343a40;
@ -5084,6 +5131,11 @@ a.badge-dark:hover, a.badge-dark:focus {
background-color: #1d2124; background-color: #1d2124;
} }
a.badge-dark:focus, a.badge-dark.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.jumbotron { .jumbotron {
padding: 2rem 1rem; padding: 2rem 1rem;
margin-bottom: 2rem; margin-bottom: 2rem;
@ -5567,11 +5619,11 @@ a.close.disabled {
background-color: rgba(255, 255, 255, 0.85); background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box; background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 0.25rem;
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
-webkit-backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
opacity: 0; opacity: 0;
border-radius: 0.25rem;
} }
.toast:not(:last-child) { .toast:not(:last-child) {
@ -5709,7 +5761,7 @@ a.close.disabled {
-ms-flex-pack: justify; -ms-flex-pack: justify;
justify-content: space-between; justify-content: space-between;
padding: 1rem 1rem; padding: 1rem 1rem;
border-bottom: 1px solid #e9ecef; border-bottom: 1px solid #dee2e6;
border-top-left-radius: 0.3rem; border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem; border-top-right-radius: 0.3rem;
} }
@ -5739,7 +5791,7 @@ a.close.disabled {
-ms-flex-pack: end; -ms-flex-pack: end;
justify-content: flex-end; justify-content: flex-end;
padding: 1rem; padding: 1rem;
border-top: 1px solid #e9ecef; border-top: 1px solid #dee2e6;
border-bottom-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem;
} }
@ -5949,24 +6001,24 @@ a.close.disabled {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
bottom: calc((0.5rem + 1px) * -1); bottom: calc((0.5rem + 1px) * -1);
} }
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before,
.bs-popover-top .arrow::after, .bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after { .bs-popover-auto[x-placement^="top"] > .arrow::after {
border-width: 0.5rem 0.5rem 0; border-width: 0.5rem 0.5rem 0;
} }
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
bottom: 0; bottom: 0;
border-top-color: rgba(0, 0, 0, 0.25); border-top-color: rgba(0, 0, 0, 0.25);
} }
.bs-popover-top .arrow::after, .bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after { .bs-popover-auto[x-placement^="top"] > .arrow::after {
bottom: 1px; bottom: 1px;
border-top-color: #fff; border-top-color: #fff;
} }
@ -5975,27 +6027,27 @@ a.close.disabled {
margin-left: 0.5rem; margin-left: 0.5rem;
} }
.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
left: calc((0.5rem + 1px) * -1); left: calc((0.5rem + 1px) * -1);
width: 0.5rem; width: 0.5rem;
height: 1rem; height: 1rem;
margin: 0.3rem 0; margin: 0.3rem 0;
} }
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before,
.bs-popover-right .arrow::after, .bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after { .bs-popover-auto[x-placement^="right"] > .arrow::after {
border-width: 0.5rem 0.5rem 0.5rem 0; border-width: 0.5rem 0.5rem 0.5rem 0;
} }
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
left: 0; left: 0;
border-right-color: rgba(0, 0, 0, 0.25); border-right-color: rgba(0, 0, 0, 0.25);
} }
.bs-popover-right .arrow::after, .bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after { .bs-popover-auto[x-placement^="right"] > .arrow::after {
left: 1px; left: 1px;
border-right-color: #fff; border-right-color: #fff;
} }
@ -6004,24 +6056,24 @@ a.close.disabled {
margin-top: 0.5rem; margin-top: 0.5rem;
} }
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
top: calc((0.5rem + 1px) * -1); top: calc((0.5rem + 1px) * -1);
} }
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before,
.bs-popover-bottom .arrow::after, .bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after { .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
border-width: 0 0.5rem 0.5rem 0.5rem; border-width: 0 0.5rem 0.5rem 0.5rem;
} }
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
top: 0; top: 0;
border-bottom-color: rgba(0, 0, 0, 0.25); border-bottom-color: rgba(0, 0, 0, 0.25);
} }
.bs-popover-bottom .arrow::after, .bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after { .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
top: 1px; top: 1px;
border-bottom-color: #fff; border-bottom-color: #fff;
} }
@ -6041,27 +6093,27 @@ a.close.disabled {
margin-right: 0.5rem; margin-right: 0.5rem;
} }
.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
right: calc((0.5rem + 1px) * -1); right: calc((0.5rem + 1px) * -1);
width: 0.5rem; width: 0.5rem;
height: 1rem; height: 1rem;
margin: 0.3rem 0; margin: 0.3rem 0;
} }
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before,
.bs-popover-left .arrow::after, .bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after { .bs-popover-auto[x-placement^="left"] > .arrow::after {
border-width: 0.5rem 0 0.5rem 0.5rem; border-width: 0.5rem 0 0.5rem 0.5rem;
} }
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
right: 0; right: 0;
border-left-color: rgba(0, 0, 0, 0.25); border-left-color: rgba(0, 0, 0, 0.25);
} }
.bs-popover-left .arrow::after, .bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after { .bs-popover-auto[x-placement^="left"] > .arrow::after {
right: 1px; right: 1px;
border-left-color: #fff; border-left-color: #fff;
} }
@ -9794,6 +9846,10 @@ a.text-dark:hover, a.text-dark:focus {
text-decoration: none !important; text-decoration: none !important;
} }
.text-break {
word-break: break-word !important;
}
.text-reset { .text-reset {
color: inherit !important; color: inherit !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