From f5ad6e3987788ae5903a39384c49171bf52bd7b8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 30 Sep 2017 14:28:03 -0700 Subject: dist --- dist/css/bootstrap.css | 56 ++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 29 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index baa88cc80..042ff99dc 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -225,6 +225,7 @@ pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; + -ms-overflow-style: scrollbar; } figure { @@ -274,6 +275,10 @@ label { margin-bottom: .5rem; } +button { + border-radius: 0; +} + button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; @@ -2850,10 +2855,6 @@ tbody.collapse.show { background-color: transparent; } -.show > a { - outline: 0; -} - .dropdown-menu.show { display: block; } @@ -3001,12 +3002,12 @@ tbody.collapse.show { border-radius: 0; } -.btn-group-vertical:first-child:not(:last-child) { +.btn-group-vertical > .btn:first-child:not(:last-child) { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } -.btn-group-vertical:last-child:not(:first-child) { +.btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; } @@ -3569,10 +3570,8 @@ tbody.collapse.show { @media (min-width: 576px) { .navbar-expand-sm { - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; -ms-flex-pack: start; justify-content: flex-start; } @@ -3617,10 +3616,8 @@ tbody.collapse.show { @media (min-width: 768px) { .navbar-expand-md { - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; -ms-flex-pack: start; justify-content: flex-start; } @@ -3665,10 +3662,8 @@ tbody.collapse.show { @media (min-width: 992px) { .navbar-expand-lg { - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; -ms-flex-pack: start; justify-content: flex-start; } @@ -3713,10 +3708,8 @@ tbody.collapse.show { @media (min-width: 1200px) { .navbar-expand-xl { - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; -ms-flex-pack: start; justify-content: flex-start; } @@ -3752,10 +3745,8 @@ tbody.collapse.show { } .navbar-expand { - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; -ms-flex-pack: start; justify-content: flex-start; } @@ -3948,6 +3939,10 @@ tbody.collapse.show { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + .card-footer { padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); @@ -4072,13 +4067,16 @@ tbody.collapse.show { .card-group .card:last-child .card-img-bottom { border-bottom-left-radius: 0; } - .card-group .card:not(:first-child):not(:last-child) { + .card-group .card:not(:first-child):not(:last-child):not(:only-child) { border-radius: 0; } - .card-group .card:not(:first-child):not(:last-child) .card-img-top, - .card-group .card:not(:first-child):not(:last-child) .card-img-bottom { + .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, + .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom { border-radius: 0; } + .card-group .card:only-child { + border-radius: 0.25rem; + } } .card-columns .card { -- cgit v1.2.3 From 79c6e54af172132baab7f344e276c443a6dfdb3a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 1 Oct 2017 12:14:55 -0700 Subject: dist --- dist/css/bootstrap.css | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 042ff99dc..840663284 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4346,6 +4346,7 @@ tbody.collapse.show { } .alert { + position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; @@ -4361,9 +4362,9 @@ tbody.collapse.show { } .alert-dismissible .close { - position: relative; - top: -0.75rem; - right: -1.25rem; + position: absolute; + top: 0; + right: 0; padding: 0.75rem 1.25rem; color: inherit; } @@ -4908,8 +4909,8 @@ button.close { .modal-header { display: -ms-flexbox; display: flex; - -ms-flex-align: center; - align-items: center; + -ms-flex-align: start; + align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; padding: 15px; @@ -4917,7 +4918,8 @@ button.close { } .modal-header .close { - margin-left: auto; + padding: 15px; + margin: -15px -15px -15px auto; } .modal-title { -- cgit v1.2.3 From 3ca4d3f88d8a2e5d43e6796c10630ad4b42ec045 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 1 Oct 2017 20:52:25 -0700 Subject: dist --- dist/css/bootstrap.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 840663284..c6cc077c2 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3162,7 +3162,7 @@ tbody.collapse.show { .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group { z-index: 2; - margin-left: -1px; + margin-left: 0; } .input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn:hover, @@ -3887,6 +3887,11 @@ tbody.collapse.show { border-radius: 0.25rem; } +.card > hr { + margin-right: 0; + margin-left: 0; +} + .card-body { -ms-flex: 1 1 auto; flex: 1 1 auto; @@ -4606,10 +4611,15 @@ tbody.collapse.show { .list-group-flush .list-group-item { border-right: 0; + border-bottom: 0; border-left: 0; border-radius: 0; } +.list-group-flush .list-group-item:first-child { + border-top: 0; +} + .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } -- cgit v1.2.3 From eaccb6070185e8447fbb32cb18b28d9b7537405f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 10:56:50 -0700 Subject: dist --- dist/css/bootstrap.css | 77 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 69 insertions(+), 8 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index c6cc077c2..25c7bf28b 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4,6 +4,37 @@ * Copyright 2011-2017 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #868e96; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #868e96; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + @media print { *, *::before, @@ -1855,21 +1886,24 @@ select.form-control:focus::-ms-value { } .col-form-label { - padding-top: calc(0.5rem - 1px * 2); - padding-bottom: calc(0.5rem - 1px * 2); + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); margin-bottom: 0; + line-height: 1.25; } .col-form-label-lg { - padding-top: calc(0.5rem - 1px * 2); - padding-bottom: calc(0.5rem - 1px * 2); + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); font-size: 1.25rem; + line-height: 1.5; } .col-form-label-sm { - padding-top: calc(0.25rem - 1px * 2); - padding-bottom: calc(0.25rem - 1px * 2); + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); font-size: 0.875rem; + line-height: 1.5; } .col-form-legend { @@ -3040,8 +3074,8 @@ tbody.collapse.show { position: relative; display: -ms-flexbox; display: flex; - -ms-flex-align: center; - align-items: center; + -ms-flex-align: stretch; + align-items: stretch; width: 100%; } @@ -3058,6 +3092,15 @@ tbody.collapse.show { z-index: 3; } +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; +} + .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { @@ -3136,6 +3179,8 @@ tbody.collapse.show { .input-group-btn { position: relative; + -ms-flex-align: stretch; + align-items: stretch; font-size: 0; white-space: nowrap; } @@ -3833,6 +3878,14 @@ tbody.collapse.show { color: rgba(0, 0, 0, 0.5); } +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover { + color: rgba(0, 0, 0, 0.9); +} + .navbar-dark .navbar-brand { color: white; } @@ -3873,6 +3926,14 @@ tbody.collapse.show { color: rgba(255, 255, 255, 0.5); } +.navbar-dark .navbar-text a { + color: white; +} + +.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover { + color: white; +} + .card { position: relative; display: -ms-flexbox; -- cgit v1.2.3 From d0fa826ac3d81f9170176c71f6c887e2b4d40f25 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 17:08:39 -0700 Subject: dist --- dist/css/bootstrap.css | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 25c7bf28b..38eeac9bc 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1834,7 +1834,7 @@ pre code { background-color: #fff; background-image: none; background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); + border: 1px solid #ced4da; border-radius: 0.25rem; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } @@ -3121,8 +3121,7 @@ tbody.collapse.show { color: #495057; text-align: center; background-color: #e9ecef; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); + border: 1px solid #ced4da; border-radius: 0.25rem; } @@ -3187,8 +3186,6 @@ tbody.collapse.show { .input-group-btn > .btn { position: relative; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); } .input-group-btn > .btn + .btn { @@ -3317,9 +3314,8 @@ tbody.collapse.show { color: #495057; vertical-align: middle; background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; - background-clip: padding-box; background-size: 8px 10px; - border: 1px solid rgba(0, 0, 0, 0.15); + border: 1px solid #ced4da; border-radius: 0.25rem; -webkit-appearance: none; -moz-appearance: none; @@ -3380,7 +3376,6 @@ tbody.collapse.show { z-index: 5; height: calc(2.25rem + 2px); padding: 0.5rem 0.75rem; - overflow: hidden; line-height: 1.25; color: #495057; pointer-events: none; @@ -3389,8 +3384,7 @@ tbody.collapse.show { -ms-user-select: none; user-select: none; background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); + border: 1px solid #ced4da; border-radius: 0.25rem; } @@ -3400,8 +3394,9 @@ tbody.collapse.show { .custom-file-control::before { position: absolute; - top: 0; - right: 0; + top: -1px; + right: -1px; + bottom: -1px; z-index: 6; display: block; height: calc(2.25rem + 2px); @@ -3409,7 +3404,8 @@ tbody.collapse.show { line-height: 1.25; color: #495057; background-color: #e9ecef; - border-left: 1px solid rgba(0, 0, 0, 0.15); + border: 1px solid #ced4da; + border-radius: 0 0.25rem 0.25rem 0; } .custom-file-control:lang(en)::before { -- cgit v1.2.3 From f58997a0dae54dc98d11892afef9acb85bdc6a1e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 19:12:11 -0700 Subject: dist --- dist/css/bootstrap.css | 44 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 5 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 38eeac9bc..5cdf24f4c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -792,6 +792,11 @@ pre code { max-width: 100%; } +.order-first { + -ms-flex-order: -1; + order: -1; +} + .order-1 { -ms-flex-order: 1; order: 1; @@ -970,6 +975,10 @@ pre code { flex: 0 0 100%; max-width: 100%; } + .order-sm-first { + -ms-flex-order: -1; + order: -1; + } .order-sm-1 { -ms-flex-order: 1; order: 1; @@ -1130,6 +1139,10 @@ pre code { flex: 0 0 100%; max-width: 100%; } + .order-md-first { + -ms-flex-order: -1; + order: -1; + } .order-md-1 { -ms-flex-order: 1; order: 1; @@ -1290,6 +1303,10 @@ pre code { flex: 0 0 100%; max-width: 100%; } + .order-lg-first { + -ms-flex-order: -1; + order: -1; + } .order-lg-1 { -ms-flex-order: 1; order: 1; @@ -1450,6 +1467,10 @@ pre code { flex: 0 0 100%; max-width: 100%; } + .order-xl-first { + -ms-flex-order: -1; + order: -1; + } .order-xl-1 { -ms-flex-order: 1; order: 1; @@ -2721,7 +2742,6 @@ fieldset[disabled] a.btn { font-weight: normal; color: #007bff; background-color: transparent; - border-radius: 0; } .btn-link:hover { @@ -3986,10 +4006,6 @@ tbody.collapse.show { border-bottom-left-radius: 0.25rem; } -.card .card-header + .list-group > .list-group-item:first-child { - border-top: 0; -} - .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; @@ -4982,6 +4998,8 @@ button.close { justify-content: space-between; padding: 15px; border-bottom: 1px solid #e9ecef; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; } .modal-header .close { @@ -5746,6 +5764,10 @@ a.bg-dark:focus, a.bg-dark:hover { display: table !important; } +.d-table-row { + display: table-row !important; +} + .d-table-cell { display: table-cell !important; } @@ -5776,6 +5798,9 @@ a.bg-dark:focus, a.bg-dark:hover { .d-sm-table { display: table !important; } + .d-sm-table-row { + display: table-row !important; + } .d-sm-table-cell { display: table-cell !important; } @@ -5805,6 +5830,9 @@ a.bg-dark:focus, a.bg-dark:hover { .d-md-table { display: table !important; } + .d-md-table-row { + display: table-row !important; + } .d-md-table-cell { display: table-cell !important; } @@ -5834,6 +5862,9 @@ a.bg-dark:focus, a.bg-dark:hover { .d-lg-table { display: table !important; } + .d-lg-table-row { + display: table-row !important; + } .d-lg-table-cell { display: table-cell !important; } @@ -5863,6 +5894,9 @@ a.bg-dark:focus, a.bg-dark:hover { .d-xl-table { display: table !important; } + .d-xl-table-row { + display: table-row !important; + } .d-xl-table-cell { display: table-cell !important; } -- cgit v1.2.3 From acaa6d6f239050a6c9444b4afc0c90a387e2b729 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 20:36:35 -0700 Subject: dist --- dist/css/bootstrap.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 5cdf24f4c..57abce8e5 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -634,10 +634,10 @@ pre code { .container { width: 100%; - margin-right: auto; - margin-left: auto; padding-right: 15px; padding-left: 15px; + margin-right: auto; + margin-left: auto; } @media (min-width: 576px) { @@ -666,10 +666,10 @@ pre code { .container-fluid { width: 100%; - margin-right: auto; - margin-left: auto; padding-right: 15px; padding-left: 15px; + margin-right: auto; + margin-left: auto; } .row { -- cgit v1.2.3 From 7adf74d58508b4fae4fed94da1b304f18d912591 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 20:50:11 -0700 Subject: dist --- dist/css/bootstrap.css | 41 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 57abce8e5..f7366de1d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2037,14 +2037,14 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for vertical-align: middle; } -.invalid-feedback { +.valid-feedback { display: none; margin-top: .25rem; font-size: .875rem; - color: #dc3545; + color: #28a745; } -.invalid-tooltip { +.valid-tooltip { position: absolute; top: 100%; z-index: 5; @@ -2055,7 +2055,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for font-size: .875rem; line-height: 1; color: #fff; - background-color: rgba(220, 53, 69, 0.8); + background-color: rgba(40, 167, 69, 0.8); border-radius: .2rem; } @@ -2106,6 +2106,28 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } +.invalid-feedback { + display: none; + margin-top: .25rem; + font-size: .875rem; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + width: 250px; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(220, 53, 69, 0.8); + border-radius: .2rem; +} + .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid { @@ -3216,6 +3238,10 @@ tbody.collapse.show { z-index: 3; } +.input-group-btn:first-child > .btn + .btn { + margin-left: 0; +} + .input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group { margin-right: -1px; @@ -3227,6 +3253,11 @@ tbody.collapse.show { margin-left: 0; } +.input-group-btn:not(:first-child) > .btn:first-child, +.input-group-btn:not(:first-child) > .btn-group:first-child { + margin-left: -1px; +} + .input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn:hover, .input-group-btn:not(:first-child) > .btn-group:focus, .input-group-btn:not(:first-child) > .btn-group:active, @@ -3497,7 +3528,7 @@ tbody.collapse.show { } .nav-pills .nav-link.active, -.show > .nav-pills .nav-link { +.nav-pills .show > .nav-link { color: #fff; background-color: #007bff; } -- cgit v1.2.3 From 7825144895ad84f5156cc54d7bee252315e9aa73 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 20:51:54 -0700 Subject: dist --- dist/css/bootstrap.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f7366de1d..74e7e8001 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2857,6 +2857,7 @@ tbody.collapse.show { content: ""; border-top: 0.3em solid; border-right: 0.3em solid transparent; + border-bottom: 0; border-left: 0.3em solid transparent; } @@ -2870,8 +2871,20 @@ tbody.collapse.show { } .dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; border-top: 0; + border-right: 0.3em solid transparent; border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } .dropdown-menu { -- cgit v1.2.3 From 898708dd2770645c0987fdcb52e12e1c739bca88 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 21:48:56 -0700 Subject: dist --- dist/css/bootstrap.css | 43 ++++++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 19 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 74e7e8001..928583889 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1848,9 +1848,9 @@ pre code { .form-control { display: block; width: 100%; - padding: 0.5rem 0.75rem; + padding: 0.375rem 0.75rem; font-size: 1rem; - line-height: 1.25; + line-height: 1.5; color: #495057; background-color: #fff; background-image: none; @@ -1907,10 +1907,10 @@ select.form-control:focus::-ms-value { } .col-form-label { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); margin-bottom: 0; - line-height: 1.25; + line-height: 1.5; } .col-form-label-lg { @@ -1928,17 +1928,17 @@ select.form-control:focus::-ms-value { } .col-form-legend { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; margin-bottom: 0; font-size: 1rem; } .form-control-plaintext { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; margin-bottom: 0; - line-height: 1.25; + line-height: 1.5; background-color: transparent; border: solid transparent; border-width: 1px 0; @@ -2275,9 +2275,9 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for -ms-user-select: none; user-select: none; border: 1px solid transparent; - padding: 0.5rem 0.75rem; + padding: 0.375rem 0.75rem; font-size: 1rem; - line-height: 1.25; + line-height: 1.5; border-radius: 0.25rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @@ -3168,11 +3168,11 @@ tbody.collapse.show { } .input-group-addon { - padding: 0.5rem 0.75rem; + padding: 0.375rem 0.75rem; margin-bottom: 0; font-size: 1rem; font-weight: normal; - line-height: 1.25; + line-height: 1.5; color: #495057; text-align: center; background-color: #e9ecef; @@ -3374,7 +3374,7 @@ tbody.collapse.show { max-width: 100%; height: calc(2.25rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; - line-height: 1.25; + line-height: 1.5; color: #495057; vertical-align: middle; background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; @@ -3396,6 +3396,11 @@ tbody.collapse.show { background-color: #fff; } +.custom-select[multiple] { + height: auto; + background-image: none; +} + .custom-select:disabled { color: #868e96; background-color: #e9ecef; @@ -3439,8 +3444,8 @@ tbody.collapse.show { left: 0; z-index: 5; height: calc(2.25rem + 2px); - padding: 0.5rem 0.75rem; - line-height: 1.25; + padding: 0.375rem 0.75rem; + line-height: 1.5; color: #495057; pointer-events: none; -webkit-user-select: none; @@ -3464,8 +3469,8 @@ tbody.collapse.show { z-index: 6; display: block; height: calc(2.25rem + 2px); - padding: 0.5rem 0.75rem; - line-height: 1.25; + padding: 0.375rem 0.75rem; + line-height: 1.5; color: #495057; background-color: #e9ecef; border: 1px solid #ced4da; -- cgit v1.2.3