From e373fbea9220732283761f3720b4be6280d5135d Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Feb 2018 14:53:29 -0800 Subject: dist --- dist/css/bootstrap.css | 91 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 89 insertions(+), 2 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index aa497136c8..743b80ec7c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -232,7 +232,7 @@ th { label { display: inline-block; - margin-bottom: .5rem; + margin-bottom: 0.5rem; } button { @@ -1712,6 +1712,13 @@ pre code { border-bottom-width: 2px; } +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } @@ -2055,6 +2062,7 @@ select.form-control:focus::-ms-value { padding-bottom: 0.375rem; margin-bottom: 0; line-height: 1.5; + color: #212529; background-color: transparent; border: solid transparent; border-width: 1px 0; @@ -2422,7 +2430,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .form-inline .form-control-plaintext { display: inline-block; } - .form-inline .input-group { + .form-inline .input-group, + .form-inline .custom-select { width: auto; } .form-inline .form-check { @@ -3306,6 +3315,12 @@ tbody.collapse.show { white-space: nowrap; } +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + .btn-group, .btn-group-vertical { position: relative; @@ -4740,6 +4755,7 @@ tbody.collapse.show { } .page-link:hover { + z-index: 2; color: #0056b3; text-decoration: none; background-color: #e9ecef; @@ -5929,6 +5945,43 @@ button.close { } } +.carousel-fade .carousel-item { + opacity: 0; + transition-duration: .6s; + transition-property: opacity; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + opacity: 1; +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + opacity: 0; +} + +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active, +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active, + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-prev { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + .carousel-control-prev, .carousel-control-next { position: absolute; @@ -6572,6 +6625,12 @@ button.bg-dark:focus { flex-wrap: wrap-reverse !important; } +.flex-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; +} + .justify-content-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; @@ -6728,6 +6787,11 @@ button.bg-dark:focus { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } .justify-content-sm-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; @@ -6864,6 +6928,11 @@ button.bg-dark:focus { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } + .flex-md-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } .justify-content-md-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; @@ -7000,6 +7069,11 @@ button.bg-dark:focus { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } .justify-content-lg-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; @@ -7136,6 +7210,11 @@ button.bg-dark:focus { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } .justify-content-xl-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; @@ -7381,6 +7460,10 @@ button.bg-dark:focus { width: 100% !important; } +.w-auto { + width: auto !important; +} + .h-25 { height: 25% !important; } @@ -7397,6 +7480,10 @@ button.bg-dark:focus { height: 100% !important; } +.h-auto { + height: auto !important; +} + .mw-100 { max-width: 100% !important; } -- cgit v1.2.3