diff options
| author | Mark Otto <[email protected]> | 2016-11-26 17:01:17 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-11-26 17:01:17 -0800 |
| commit | 181e124bc1fed117a562698cafcc3be6b107eb65 (patch) | |
| tree | d7667e6ea68e0519b8a61a5ea3bf17c38ad67068 /dist/css/bootstrap-flex.css | |
| parent | 7d3abdb9c7b969b8cf00a4cbf7dcf1d03825f067 (diff) | |
| download | bootstrap-181e124bc1fed117a562698cafcc3be6b107eb65.tar.xz bootstrap-181e124bc1fed117a562698cafcc3be6b107eb65.zip | |
grunt
Diffstat (limited to 'dist/css/bootstrap-flex.css')
| -rw-r--r-- | dist/css/bootstrap-flex.css | 55 |
1 files changed, 53 insertions, 2 deletions
diff --git a/dist/css/bootstrap-flex.css b/dist/css/bootstrap-flex.css index 82c2dd667..ff14fb635 100644 --- a/dist/css/bootstrap-flex.css +++ b/dist/css/bootstrap-flex.css @@ -2575,7 +2575,26 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for flex-flow: row wrap; } +.form-inline .form-check { + width: 100%; +} + @media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } .form-inline .form-group { display: -webkit-box; display: -webkit-flex; @@ -2606,10 +2625,21 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for vertical-align: middle; } .form-inline .form-check { - display: inline-block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; margin-top: 0; margin-bottom: 0; - vertical-align: middle; } .form-inline .form-check-label { padding-left: 0; @@ -2618,6 +2648,27 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for position: relative; margin-left: 0; } + .form-inline .custom-control { + padding-left: 0; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-indicator { + position: static; + display: inline-block; + margin-right: .25rem; + vertical-align: text-bottom; + } .form-inline .has-feedback .form-control-feedback { top: 0; } |
