From e9bc67db5b944130aade393f6614bf1f9e1dbc31 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 7 Sep 2016 21:07:52 -0700 Subject: grunt --- dist/css/bootstrap.css | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index aa413ba66..cc04b2f16 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3998,7 +3998,7 @@ input[type="button"].btn-block { } .card-header:first-child { - border-radius: 0.25rem 0.25rem 0 0; + border-radius: calc($card-border-radius - 1px) calc($card-border-radius - 1px) 0 0; } .card-footer { @@ -4014,7 +4014,7 @@ input[type="button"].btn-block { } .card-footer:last-child { - border-radius: 0 0 0.25rem 0.25rem; + border-radius: 0 0 calc($card-border-radius - 1px) calc($card-border-radius - 1px); } .card-header-tabs { @@ -4139,7 +4139,7 @@ input[type="button"].btn-block { } .card-img { - border-radius: 0.25rem; + border-radius: calc($card-border-radius - 1px); } .card-img-overlay { @@ -4152,13 +4152,13 @@ input[type="button"].btn-block { } .card-img-top { - border-top-right-radius: 0.25rem; - border-top-left-radius: 0.25rem; + border-top-right-radius: calc($card-border-radius - 1px); + border-top-left-radius: calc($card-border-radius - 1px); } .card-img-bottom { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + border-bottom-right-radius: calc($card-border-radius - 1px); + border-bottom-left-radius: calc($card-border-radius - 1px); } @media (min-width: 544px) { @@ -4233,6 +4233,7 @@ input[type="button"].btn-block { column-gap: 1.25rem; } .card-columns .card { + display: inline-block; width: 100%; } } -- cgit v1.2.3 From cbd2ac0ee7560f87e9547eb6456b142f43fe0116 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Sep 2016 20:51:07 -0700 Subject: grunt --- dist/css/bootstrap.css | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index cc04b2f16..256a05a04 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3359,7 +3359,7 @@ input[type="button"].btn-block { .custom-control { position: relative; - display: inline; + display: inline-block; padding-left: 1.5rem; cursor: pointer; } @@ -3401,7 +3401,7 @@ input[type="button"].btn-block { .custom-control-indicator { position: absolute; - top: .0625rem; + top: .25rem; left: 0; display: block; width: 1rem; @@ -3440,13 +3440,8 @@ input[type="button"].btn-block { } .custom-controls-stacked .custom-control { - display: inline; -} - -.custom-controls-stacked .custom-control::after { - display: block; - margin-bottom: 0.25rem; - content: ""; + float: left; + clear: left; } .custom-controls-stacked .custom-control + .custom-control { @@ -3998,7 +3993,7 @@ input[type="button"].btn-block { } .card-header:first-child { - border-radius: calc($card-border-radius - 1px) calc($card-border-radius - 1px) 0 0; + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } .card-footer { @@ -4014,7 +4009,7 @@ input[type="button"].btn-block { } .card-footer:last-child { - border-radius: 0 0 calc($card-border-radius - 1px) calc($card-border-radius - 1px); + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } .card-header-tabs { @@ -4139,7 +4134,7 @@ input[type="button"].btn-block { } .card-img { - border-radius: calc($card-border-radius - 1px); + border-radius: calc(0.25rem - 1px); } .card-img-overlay { @@ -4152,13 +4147,13 @@ input[type="button"].btn-block { } .card-img-top { - border-top-right-radius: calc($card-border-radius - 1px); - border-top-left-radius: calc($card-border-radius - 1px); + border-top-right-radius: calc(0.25rem - 1px); + border-top-left-radius: calc(0.25rem - 1px); } .card-img-bottom { - border-bottom-right-radius: calc($card-border-radius - 1px); - border-bottom-left-radius: calc($card-border-radius - 1px); + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } @media (min-width: 544px) { -- cgit v1.2.3 From a27a488002aafb6725e80f63d7022f9af32df669 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Sep 2016 22:34:25 -0700 Subject: woof, first grunt after building all the dist lol --- dist/css/bootstrap.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 256a05a04..d0ac3bfe3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3777,10 +3777,15 @@ input[type="button"].btn-block { } .navbar-toggler { + width: 2.5em; + height: 2em; padding: .5rem .75rem; font-size: 1.25rem; line-height: 1; - background: none; + background-color: transparent; + background: transparent no-repeat center center; + -webkit-background-size: 24px 24px; + background-size: 24px 24px; border: 1px solid transparent; border-radius: 0.25rem; } @@ -3836,6 +3841,10 @@ input[type="button"].btn-block { color: rgba(0, 0, 0, 0.8); } +.navbar-light .navbar-toggler { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.3)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +} + .navbar-light .navbar-divider { background-color: rgba(0, 0, 0, 0.075); } @@ -3869,6 +3878,10 @@ input[type="button"].btn-block { color: white; } +.navbar-dark .navbar-toggler { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +} + .navbar-dark .navbar-divider { background-color: rgba(255, 255, 255, 0.075); } -- cgit v1.2.3 From 0b36debc5f5ba534575233e76c3541c01a55d7b0 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Sep 2016 23:50:50 -0700 Subject: grunt --- dist/css/bootstrap.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d0ac3bfe3..67669eaa3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3782,7 +3782,6 @@ input[type="button"].btn-block { padding: .5rem .75rem; font-size: 1.25rem; line-height: 1; - background-color: transparent; background: transparent no-repeat center center; -webkit-background-size: 24px 24px; background-size: 24px 24px; @@ -6271,6 +6270,14 @@ a.text-danger:focus, a.text-danger:hover { color: #c9302c !important; } +.text-gray-dark { + color: #373a3c !important; +} + +a.text-gray-dark:focus, a.text-gray-dark:hover { + color: #1f2021 !important; +} + .text-hide { font: 0/0 a; color: transparent; -- cgit v1.2.3 From 13e4348dfd78c0f1a28d5a108a4ec4f55de1271a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Sep 2016 23:52:47 -0700 Subject: grunt --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 67669eaa3..363b6afcd 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3994,6 +3994,7 @@ input[type="button"].btn-block { .card-header { padding: 0.75rem 1.25rem; + margin-bottom: 0; background-color: #f5f5f5; border-bottom: 1px solid rgba(0, 0, 0, 0.125); } -- cgit v1.2.3 From 8a85f93aba52e1992b8e39efc7acceb2ecb7dcf7 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 2 Oct 2016 19:40:39 -0700 Subject: grunt --- dist/css/bootstrap.css | 88 +++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 73 insertions(+), 15 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 363b6afcd..ca050ce27 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -474,7 +474,6 @@ select, textarea { margin: 0; line-height: inherit; - border-radius: 0; } input[type="radio"]:disabled, @@ -801,8 +800,8 @@ pre code { } .row { - margin-left: -15px; margin-right: -15px; + margin-left: -15px; } .row::after { @@ -811,6 +810,34 @@ pre code { clear: both; } +@media (min-width: 544px) { + .row { + margin-right: -15px; + margin-left: -15px; + } +} + +@media (min-width: 768px) { + .row { + margin-right: -15px; + margin-left: -15px; + } +} + +@media (min-width: 992px) { + .row { + margin-right: -15px; + margin-left: -15px; + } +} + +@media (min-width: 1200px) { + .row { + margin-right: -15px; + margin-left: -15px; + } +} + .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { position: relative; min-height: 1px; @@ -818,6 +845,34 @@ pre code { padding-left: 15px; } +@media (min-width: 544px) { + .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 768px) { + .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 992px) { + .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 1200px) { + .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + padding-right: 15px; + padding-left: 15px; + } +} + .col-xs-1 { float: left; width: 8.333333%; @@ -2078,6 +2133,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-check-inline.disabled { + color: #818a91; cursor: not-allowed; } @@ -2118,7 +2174,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-success .form-control-success { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='$form-icon-success-color' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); } .has-warning .form-control-feedback, @@ -2144,7 +2200,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-warning .form-control-warning { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); } .has-danger .form-control-feedback, @@ -2170,7 +2226,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-danger .form-control-danger { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } @media (min-width: 544px) { @@ -2918,9 +2974,9 @@ input[type="button"].btn-block { z-index: 1000; display: none; float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; font-size: 1rem; color: #373a3c; text-align: left; @@ -2942,7 +2998,7 @@ input[type="button"].btn-block { .dropdown-item { display: block; width: 100%; - padding: 3px 20px; + padding: 3px 1.5rem; clear: both; font-weight: normal; color: #373a3c; @@ -2997,7 +3053,8 @@ input[type="button"].btn-block { .dropdown-header { display: block; - padding: 5px 20px; + padding: 0.5rem 1.5rem; + margin-bottom: 0; font-size: 0.875rem; color: #818a91; white-space: nowrap; @@ -3023,7 +3080,7 @@ input[type="button"].btn-block { .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; - margin-bottom: 2px; + margin-bottom: 0.125rem; } .btn-group, @@ -3037,6 +3094,7 @@ input[type="button"].btn-block { .btn-group-vertical > .btn { position: relative; float: left; + margin-bottom: 0; } .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, @@ -3423,12 +3481,12 @@ input[type="button"].btn-block { } .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator { background-color: #0074d9; - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#fff' d='M0 2h4'/%3E%3C/svg%3E"); } .custom-radio .custom-control-indicator { @@ -3436,7 +3494,7 @@ input[type="button"].btn-block { } .custom-radio .custom-control-input:checked ~ .custom-control-indicator { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#fff'/%3E%3C/svg%3E"); } .custom-controls-stacked .custom-control { @@ -3455,7 +3513,7 @@ input[type="button"].btn-block { padding-right: 0.75rem \9; color: #55595c; 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: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; background-image: none \9; -webkit-background-size: 8px 10px; background-size: 8px 10px; -- cgit v1.2.3 From 2919c3407111ac960c746b78b00ee4f0ae443ad5 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 2 Oct 2016 20:39:19 -0700 Subject: grunt --- dist/css/bootstrap.css | 49 ++++++++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index ca050ce27..eb3e40ae0 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4,9 +4,10 @@ * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */ +/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; + line-height: 1.15; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } @@ -53,6 +54,7 @@ template, a { background-color: transparent; + -webkit-text-decoration-skip: objects; } a:active, @@ -139,9 +141,11 @@ hr { button, input, +optgroup, select, textarea { font: inherit; + margin: 0; } optgroup { @@ -149,34 +153,15 @@ optgroup { } button, -input, -select { +input { overflow: visible; } -button, -input, -select, -textarea { - margin: 0; -} - button, select { text-transform: none; } -button, -[type="button"], -[type="reset"], -[type="submit"] { - cursor: pointer; -} - -[disabled] { - cursor: default; -} - button, html [type="button"], [type="reset"], @@ -185,13 +170,17 @@ html [type="button"], } button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; padding: 0; } button:-moz-focusring, -input:-moz-focusring { +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } @@ -229,6 +218,7 @@ textarea { [type="search"] { -webkit-appearance: textfield; + outline-offset: -2px; } [type="search"]::-webkit-search-cancel-button, @@ -236,6 +226,16 @@ textarea { -webkit-appearance: none; } +::-webkit-input-placeholder { + color: inherit; + opacity: 0.54; +} + +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} + @media print { *, *::before, @@ -472,7 +472,6 @@ input, button, select, textarea { - margin: 0; line-height: inherit; } -- cgit v1.2.3 From a2a53cb8c5174ef713b7dc7633fc6f2d7a468ee5 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Oct 2016 12:39:56 -0700 Subject: grunt --- dist/css/bootstrap.css | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index eb3e40ae0..a40269044 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1,5 +1,5 @@ /*! - * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com) + * Bootstrap v4.0.0-alpha.4 (https://getbootstrap.com) * Copyright 2011-2016 The Bootstrap Authors * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @@ -241,7 +241,10 @@ textarea { *::before, *::after, *::first-letter, - *::first-line { + p::first-line, + div::first-line, + blockquote::first-line, + li::first-line { text-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; @@ -253,6 +256,9 @@ textarea { abbr[title]::after { content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; + } pre, blockquote { border: 1px solid #999; @@ -837,7 +843,7 @@ pre code { } } -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { +.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { position: relative; min-height: 1px; padding-right: 15px; @@ -845,28 +851,28 @@ pre code { } @media (min-width: 544px) { - .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 768px) { - .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 992px) { - .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 1200px) { - .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } @@ -2925,6 +2931,14 @@ input[type="button"].btn-block { display: block; } +tr.collapse.in { + display: table-row; +} + +tbody.collapse.in { + display: table-row-group; +} + .collapsing { position: relative; height: 0; @@ -5172,7 +5186,6 @@ button.close { display: none; overflow: hidden; outline: 0; - -webkit-overflow-scrolling: touch; } .modal.fade .modal-dialog { -- cgit v1.2.3 From 8d162553fa7fe499a72569d42debed18dfc5791b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Oct 2016 15:02:49 -0700 Subject: grunt --- dist/css/bootstrap.css | 56 +++++++++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 26 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index bce23fc57..5c8460cec 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -592,7 +592,7 @@ hr { small, .small { - font-size: 80%; + font-size: 0.875rem; font-weight: normal; } @@ -757,27 +757,31 @@ pre code { clear: both; } -@media (min-width: 544px) { +@media (min-width: 576px) { .container { - max-width: 576px; + width: 540px; + max-width: 100%; } } @media (min-width: 768px) { .container { - max-width: 720px; + width: 720px; + max-width: 100%; } } @media (min-width: 992px) { .container { - max-width: 940px; + width: 960px; + max-width: 100%; } } @media (min-width: 1200px) { .container { - max-width: 1140px; + width: 1140px; + max-width: 100%; } } @@ -805,7 +809,7 @@ pre code { clear: both; } -@media (min-width: 544px) { +@media (min-width: 576px) { .row { margin-right: -15px; margin-left: -15px; @@ -840,7 +844,7 @@ pre code { padding-left: 15px; } -@media (min-width: 544px) { +@media (min-width: 576px) { .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; @@ -1076,7 +1080,7 @@ pre code { margin-left: 91.666667%; } -@media (min-width: 544px) { +@media (min-width: 576px) { .col-sm-1 { float: left; width: 8.333333%; @@ -2224,7 +2228,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } -@media (min-width: 544px) { +@media (min-width: 576px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; @@ -3754,7 +3758,7 @@ tbody.collapse.in { clear: both; } -@media (min-width: 544px) { +@media (min-width: 576px) { .navbar { border-radius: 0.25rem; } @@ -3764,7 +3768,7 @@ tbody.collapse.in { z-index: 1000; } -@media (min-width: 544px) { +@media (min-width: 576px) { .navbar-full { border-radius: 0; } @@ -3778,7 +3782,7 @@ tbody.collapse.in { z-index: 1030; } -@media (min-width: 544px) { +@media (min-width: 576px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; @@ -3801,7 +3805,7 @@ tbody.collapse.in { width: 100%; } -@media (min-width: 544px) { +@media (min-width: 576px) { .navbar-sticky-top { border-radius: 0; } @@ -3952,14 +3956,14 @@ tbody.collapse.in { clear: both; } -@media (max-width: 543px) { +@media (max-width: 575px) { .navbar-toggleable-xs .navbar-nav .nav-item { float: none; margin-left: 0; } } -@media (min-width: 544px) { +@media (min-width: 576px) { .navbar-toggleable-xs { display: block !important; } @@ -4230,7 +4234,7 @@ tbody.collapse.in { border-bottom-left-radius: calc(0.25rem - 1px); } -@media (min-width: 544px) { +@media (min-width: 576px) { .card-deck { display: table; width: 100%; @@ -4249,7 +4253,7 @@ tbody.collapse.in { } } -@media (min-width: 544px) { +@media (min-width: 576px) { .card-group { display: table; width: 100%; @@ -4292,7 +4296,7 @@ tbody.collapse.in { } } -@media (min-width: 544px) { +@media (min-width: 576px) { .card-columns { -webkit-column-count: 3; -moz-column-count: 3; @@ -4520,7 +4524,7 @@ a.tag:focus, a.tag:hover { border-radius: 0.3rem; } -@media (min-width: 544px) { +@media (min-width: 576px) { .jumbotron { padding: 4rem 2rem; } @@ -5281,7 +5285,7 @@ button.close { overflow: scroll; } -@media (min-width: 544px) { +@media (min-width: 576px) { .modal-dialog { max-width: 600px; margin: 30px auto; @@ -5748,7 +5752,7 @@ button.close { text-shadow: none; } -@media (min-width: 544px) { +@media (min-width: 576px) { .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; @@ -5882,7 +5886,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { float: none !important; } -@media (min-width: 544px) { +@media (min-width: 576px) { .float-sm-left { float: left !important; } @@ -6233,7 +6237,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { text-align: center !important; } -@media (min-width: 544px) { +@media (min-width: 576px) { .text-sm-left { text-align: left !important; } @@ -6381,13 +6385,13 @@ a.text-gray-dark:focus, a.text-gray-dark:hover { display: none !important; } -@media (max-width: 543px) { +@media (max-width: 575px) { .hidden-xs-down { display: none !important; } } -@media (min-width: 544px) { +@media (min-width: 576px) { .hidden-sm-up { display: none !important; } -- cgit v1.2.3 From 571e86e7705ee38a4b828b0e6f24de089a69e8a9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Oct 2016 17:26:51 -0700 Subject: grunt --- dist/css/bootstrap.css | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 5c8460cec..8ba05c1f2 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1896,7 +1896,7 @@ pre code { .table-responsive { display: block; width: 100%; - min-height: .01%; + min-height: 0%; overflow-x: auto; } @@ -2035,10 +2035,11 @@ select.form-control:focus::-ms-value { } .form-control-static { - min-height: 2.5rem; padding-top: 0.5rem; padding-bottom: 0.5rem; - margin-bottom: 0; + line-height: 1.25; + border: solid transparent; + border-width: 1px 0; } .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control, @@ -2162,18 +2163,19 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #5cb85c; } +.has-success .form-control:focus { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #a3d7a3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #a3d7a3; +} + .has-success .input-group-addon { color: #5cb85c; border-color: #5cb85c; background-color: #eaf6ea; } -.has-success .form-control-feedback { - color: #5cb85c; -} - .has-success .form-control-success { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='$form-icon-success-color' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#5cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); } .has-warning .form-control-feedback, @@ -2188,16 +2190,17 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #f0ad4e; } +.has-warning .form-control:focus { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; +} + .has-warning .input-group-addon { color: #f0ad4e; border-color: #f0ad4e; background-color: white; } -.has-warning .form-control-feedback { - color: #f0ad4e; -} - .has-warning .form-control-warning { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); } @@ -2214,16 +2217,17 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #d9534f; } +.has-danger .form-control:focus { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3; +} + .has-danger .input-group-addon { color: #d9534f; border-color: #d9534f; background-color: #fdf7f7; } -.has-danger .form-control-feedback { - color: #d9534f; -} - .has-danger .form-control-danger { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } @@ -2244,6 +2248,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .input-group { display: inline-table; + width: auto; vertical-align: middle; } .form-inline .input-group .input-group-addon, @@ -4950,6 +4955,8 @@ base::-moz-progress-bar, } .list-group-flush .list-group-item { + border-right: 0; + border-left: 0; border-radius: 0; } -- cgit v1.2.3 From ef5bbffd558c63a49c3d64a471138b0e4f5bb660 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Oct 2016 19:55:58 -0700 Subject: grunt --- dist/css/bootstrap.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 8ba05c1f2..63cf4c198 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1996,7 +1996,7 @@ pre code { } select.form-control:not([size]):not([multiple]) { - height: 2.5rem; + height: calc(2.5rem - 2px); } select.form-control:focus::-ms-value { @@ -3521,6 +3521,7 @@ tbody.collapse.in { .custom-select { display: inline-block; max-width: 100%; + height: calc(2.5rem - 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; padding-right: 0.75rem \9; color: #55595c; @@ -5965,6 +5966,10 @@ a.bg-inverse:focus, a.bg-inverse:hover { width: 100% !important; } +.h-100 { + height: 100% !important; +} + .mx-auto { margin-right: auto !important; margin-left: auto !important; -- cgit v1.2.3 From 4493701ee2975a5041d0309ee4f06715f89675cb Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Oct 2016 20:26:49 -0700 Subject: grunt --- dist/css/bootstrap.css | 93 +++++++++++++++++++++++++++++++------------------- 1 file changed, 57 insertions(+), 36 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 63cf4c198..64c86c426 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5341,10 +5341,11 @@ button.close { margin-top: -3px; } -.tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow { +.tooltip.tooltip-top .tooltip-inner::before, .tooltip.bs-tether-element-attached-bottom .tooltip-inner::before { bottom: 0; left: 50%; margin-left: -5px; + content: ""; border-width: 5px 5px 0; border-top-color: #000; } @@ -5354,10 +5355,11 @@ button.close { margin-left: 3px; } -.tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow { +.tooltip.tooltip-right .tooltip-inner::before, .tooltip.bs-tether-element-attached-left .tooltip-inner::before { top: 50%; left: 0; margin-top: -5px; + content: ""; border-width: 5px 5px 5px 0; border-right-color: #000; } @@ -5367,10 +5369,11 @@ button.close { margin-top: 3px; } -.tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow { +.tooltip.tooltip-bottom .tooltip-inner::before, .tooltip.bs-tether-element-attached-top .tooltip-inner::before { top: 0; left: 50%; margin-left: -5px; + content: ""; border-width: 0 5px 5px; border-bottom-color: #000; } @@ -5380,10 +5383,11 @@ button.close { margin-left: -3px; } -.tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow { +.tooltip.tooltip-left .tooltip-inner::before, .tooltip.bs-tether-element-attached-right .tooltip-inner::before { top: 50%; right: 0; margin-top: -5px; + content: ""; border-width: 5px 0 5px 5px; border-left-color: #000; } @@ -5397,7 +5401,7 @@ button.close { border-radius: 0.25rem; } -.tooltip-arrow { +.tooltip-inner::before { position: absolute; width: 0; height: 0; @@ -5440,79 +5444,94 @@ button.close { margin-top: -10px; } -.popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow { - bottom: -11px; +.popover.popover-top::before, .popover.popover-top::after, .popover.bs-tether-element-attached-bottom::before, .popover.bs-tether-element-attached-bottom::after { left: 50%; + border-bottom-width: 0; +} + +.popover.popover-top::before, .popover.bs-tether-element-attached-bottom::before { + bottom: -11px; margin-left: -11px; border-top-color: rgba(0, 0, 0, 0.25); - border-bottom-width: 0; } -.popover.popover-top .popover-arrow::after, .popover.bs-tether-element-attached-bottom .popover-arrow::after { - bottom: 1px; +.popover.popover-top::after, .popover.bs-tether-element-attached-bottom::after { + bottom: -10px; margin-left: -10px; - content: ""; border-top-color: #fff; - border-bottom-width: 0; } .popover.popover-right, .popover.bs-tether-element-attached-left { margin-left: 10px; } -.popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow { +.popover.popover-right::before, .popover.popover-right::after, .popover.bs-tether-element-attached-left::before, .popover.bs-tether-element-attached-left::after { top: 50%; + border-left-width: 0; +} + +.popover.popover-right::before, .popover.bs-tether-element-attached-left::before { left: -11px; margin-top: -11px; border-right-color: rgba(0, 0, 0, 0.25); - border-left-width: 0; } -.popover.popover-right .popover-arrow::after, .popover.bs-tether-element-attached-left .popover-arrow::after { - bottom: -10px; - left: 1px; - content: ""; +.popover.popover-right::after, .popover.bs-tether-element-attached-left::after { + left: -10px; + margin-top: -10px; border-right-color: #fff; - border-left-width: 0; } .popover.popover-bottom, .popover.bs-tether-element-attached-top { margin-top: 10px; } -.popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow { - top: -11px; +.popover.popover-bottom::before, .popover.popover-bottom::after, .popover.bs-tether-element-attached-top::before, .popover.bs-tether-element-attached-top::after { left: 50%; - margin-left: -11px; border-top-width: 0; +} + +.popover.popover-bottom::before, .popover.bs-tether-element-attached-top::before { + top: -11px; + margin-left: -11px; border-bottom-color: rgba(0, 0, 0, 0.25); } -.popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after { - top: 1px; +.popover.popover-bottom::after, .popover.bs-tether-element-attached-top::after { + top: -10px; + margin-left: -10px; + border-bottom-color: #f7f7f7; +} + +.popover.popover-bottom .popover-title::before, .popover.bs-tether-element-attached-top .popover-title::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 20px; margin-left: -10px; content: ""; - border-top-width: 0; - border-bottom-color: #fff; + border-bottom: 1px solid #f7f7f7; } .popover.popover-left, .popover.bs-tether-element-attached-right { margin-left: -10px; } -.popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow { +.popover.popover-left::before, .popover.popover-left::after, .popover.bs-tether-element-attached-right::before, .popover.bs-tether-element-attached-right::after { top: 50%; + border-right-width: 0; +} + +.popover.popover-left::before, .popover.bs-tether-element-attached-right::before { right: -11px; margin-top: -11px; - border-right-width: 0; border-left-color: rgba(0, 0, 0, 0.25); } -.popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after { - right: 1px; - bottom: -10px; - content: ""; - border-right-width: 0; +.popover.popover-left::after, .popover.bs-tether-element-attached-right::after { + right: -10px; + margin-top: -10px; border-left-color: #fff; } @@ -5533,7 +5552,8 @@ button.close { padding: 9px 14px; } -.popover-arrow, .popover-arrow::after { +.popover::before, +.popover::after { position: absolute; display: block; width: 0; @@ -5542,11 +5562,12 @@ button.close { border-style: solid; } -.popover-arrow { +.popover::before { + content: ""; border-width: 11px; } -.popover-arrow::after { +.popover::after { content: ""; border-width: 10px; } -- cgit v1.2.3 From 6d6538fc81ebdb9e29ca5a5a4e8e5768b9358fe9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 16 Oct 2016 19:44:11 -0700 Subject: grunt --- dist/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 64c86c426..7006669bb 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -592,7 +592,7 @@ hr { small, .small { - font-size: 0.875rem; + font-size: 80%; font-weight: normal; } -- cgit v1.2.3 From 154373889085c501c1eedf8402d82ab35a7cd687 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 18 Oct 2016 20:03:42 -0700 Subject: grunt --- dist/css/bootstrap.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 7006669bb..22335063e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5805,6 +5805,30 @@ button.close { } } +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + .bg-faded { background-color: #f7f7f9; } -- cgit v1.2.3 From dd22d9925460a06c49a19f5142019a2a30c41119 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 19 Oct 2016 01:18:28 -0700 Subject: grunt --- dist/css/bootstrap.css | 194 ++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 174 insertions(+), 20 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 22335063e..f65dd52d9 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3823,21 +3823,18 @@ tbody.collapse.in { padding-bottom: 0.25rem; margin-right: 1rem; font-size: 1.25rem; + line-height: inherit; } .navbar-brand:focus, .navbar-brand:hover { text-decoration: none; } -.navbar-brand > img { - display: block; -} - .navbar-divider { float: left; width: 1px; - padding-top: .425rem; - padding-bottom: .425rem; + padding-top: 0.425rem; + padding-bottom: 0.425rem; margin-right: 1rem; margin-left: 1rem; overflow: hidden; @@ -3847,10 +3844,16 @@ tbody.collapse.in { content: "\00a0"; } +.navbar-text { + display: inline-block; + padding-top: .425rem; + padding-bottom: .425rem; +} + .navbar-toggler { width: 2.5em; height: 2em; - padding: .5rem .75rem; + padding: 0.5rem 0.75rem; font-size: 1.25rem; line-height: 1; background: transparent no-repeat center center; @@ -3864,6 +3867,149 @@ tbody.collapse.in { text-decoration: none; } +.navbar-toggleable-xs::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 575px) { + .navbar-toggleable-xs .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-xs .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-xs .navbar-nav .dropdown-menu { + position: static; + float: none; + } +} + +@media (min-width: 576px) { + .navbar-toggleable-xs { + display: block; + } +} + +.navbar-toggleable-sm::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 767px) { + .navbar-toggleable-sm .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-sm .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-sm .navbar-nav .dropdown-menu { + position: static; + float: none; + } +} + +@media (min-width: 768px) { + .navbar-toggleable-sm { + display: block; + } +} + +.navbar-toggleable-md::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 991px) { + .navbar-toggleable-md .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-md .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-md .navbar-nav .dropdown-menu { + position: static; + float: none; + } +} + +@media (min-width: 992px) { + .navbar-toggleable-md { + display: block; + } +} + +.navbar-toggleable-lg::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 1199px) { + .navbar-toggleable-lg .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-lg .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-lg .navbar-nav .dropdown-menu { + position: static; + float: none; + } +} + +@media (min-width: 1200px) { + .navbar-toggleable-lg { + display: block; + } +} + +.navbar-toggleable-xl { + display: block; +} + +.navbar-toggleable-xl::after { + content: ""; + display: table; + clear: both; +} + +.navbar-toggleable-xl .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; +} + +.navbar-toggleable-xl .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; +} + +.navbar-toggleable-xl .navbar-nav .dropdown-menu { + position: static; + float: none; +} + .navbar-nav .nav-item { float: left; } @@ -3882,20 +4028,23 @@ tbody.collapse.in { margin-left: 1rem; } -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.8); +.navbar-light .navbar-brand, +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.9); } -.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, 0.8); +.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover, +.navbar-light .navbar-toggler:focus, +.navbar-light .navbar-toggler:hover { + color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.3); + color: rgba(0, 0, 0, 0.5); } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, 0.6); + color: rgba(0, 0, 0, 0.7); } .navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover, @@ -3908,22 +4057,26 @@ tbody.collapse.in { .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.active:focus, .navbar-light .navbar-nav .nav-link.active:hover { - color: rgba(0, 0, 0, 0.8); + color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-toggler { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.3)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); + border-color: rgba(0, 0, 0, 0.1); } .navbar-light .navbar-divider { background-color: rgba(0, 0, 0, 0.075); } -.navbar-dark .navbar-brand { +.navbar-dark .navbar-brand, +.navbar-dark .navbar-toggler { color: white; } -.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover { +.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover, +.navbar-dark .navbar-toggler:focus, +.navbar-dark .navbar-toggler:hover { color: white; } @@ -3950,6 +4103,7 @@ tbody.collapse.in { .navbar-dark .navbar-toggler { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); + border-color: rgba(255, 255, 255, 0.1); } .navbar-dark .navbar-divider { @@ -4547,7 +4701,7 @@ a.tag:focus, a.tag:hover { } .alert { - padding: 1rem; + padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem; @@ -4562,13 +4716,13 @@ a.tag:focus, a.tag:hover { } .alert-dismissible { - padding-right: 2rem; + padding-right: 2.5rem; } .alert-dismissible .close { position: relative; top: -.125rem; - right: -1rem; + right: -1.25rem; color: inherit; } -- cgit v1.2.3 From 8ff7edaab4f55b6612df3fe670aa9b9ac0984eae Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 19 Oct 2016 08:27:41 -0700 Subject: version bump to alpha 5 --- dist/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f65dd52d9..694a774f3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1,5 +1,5 @@ /*! - * Bootstrap v4.0.0-alpha.4 (https://getbootstrap.com) + * Bootstrap v4.0.0-alpha.5 (https://getbootstrap.com) * Copyright 2011-2016 The Bootstrap Authors * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) -- cgit v1.2.3 From 9dbfc90eae7b1eda2b0e0b501a7e223d0cce688c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Oct 2016 09:51:22 -0700 Subject: grunt --- dist/css/bootstrap.css | 149 ++++++++++++++++++++++++++++++++----------------- 1 file changed, 99 insertions(+), 50 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 694a774f3..792fa8f10 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -747,8 +747,8 @@ pre code { .container { margin-left: auto; margin-right: auto; - padding-left: 15px; padding-right: 15px; + padding-left: 15px; } .container::after { @@ -757,6 +757,34 @@ pre code { clear: both; } +@media (min-width: 576px) { + .container { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 768px) { + .container { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 992px) { + .container { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 1200px) { + .container { + padding-right: 15px; + padding-left: 15px; + } +} + @media (min-width: 576px) { .container { width: 540px; @@ -788,8 +816,8 @@ pre code { .container-fluid { margin-left: auto; margin-right: auto; - padding-left: 15px; padding-right: 15px; + padding-left: 15px; } .container-fluid::after { @@ -798,6 +826,34 @@ pre code { clear: both; } +@media (min-width: 576px) { + .container-fluid { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 768px) { + .container-fluid { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 992px) { + .container-fluid { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 1200px) { + .container-fluid { + padding-right: 15px; + padding-left: 15px; + } +} + .row { margin-right: -15px; margin-left: -15px; @@ -2163,11 +2219,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #5cb85c; } -.has-success .form-control:focus { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #a3d7a3; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #a3d7a3; -} - .has-success .input-group-addon { color: #5cb85c; border-color: #5cb85c; @@ -2175,7 +2226,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-success .form-control-success { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#5cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); } .has-warning .form-control-feedback, @@ -2190,11 +2241,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #f0ad4e; } -.has-warning .form-control:focus { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; -} - .has-warning .input-group-addon { color: #f0ad4e; border-color: #f0ad4e; @@ -2202,7 +2248,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-warning .form-control-warning { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); } .has-danger .form-control-feedback, @@ -2217,11 +2263,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for border-color: #d9534f; } -.has-danger .form-control:focus { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3; -} - .has-danger .input-group-addon { color: #d9534f; border-color: #d9534f; @@ -2229,7 +2270,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .has-danger .form-control-danger { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } @media (min-width: 576px) { @@ -2918,7 +2959,7 @@ input[type="button"].btn-block { transition: opacity .15s linear; } -.fade.in { +.fade.active { opacity: 1; } @@ -2926,15 +2967,15 @@ input[type="button"].btn-block { display: none; } -.collapse.in { +.collapse.active { display: block; } -tr.collapse.in { +tr.collapse.active { display: table-row; } -tbody.collapse.in { +tbody.collapse.active { display: table-row-group; } @@ -3045,11 +3086,11 @@ tbody.collapse.in { filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; } -.open > .dropdown-menu { +.active > .dropdown-menu { display: block; } -.open > a { +.active > a { outline: 0; } @@ -3493,12 +3534,12 @@ tbody.collapse.in { } .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator { background-color: #0074d9; - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#fff' d='M0 2h4'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } .custom-radio .custom-control-indicator { @@ -3506,7 +3547,7 @@ tbody.collapse.in { } .custom-radio .custom-control-input:checked ~ .custom-control-indicator { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#fff'/%3E%3C/svg%3E"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); } .custom-controls-stacked .custom-control { @@ -3526,7 +3567,7 @@ tbody.collapse.in { padding-right: 0.75rem \9; color: #55595c; 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='#333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + 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-image: none \9; -webkit-background-size: 8px 10px; background-size: 8px 10px; @@ -4595,7 +4636,7 @@ tbody.collapse.in { border-top-right-radius: 0.2rem; } -.tag { +.badge { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; @@ -4608,72 +4649,72 @@ tbody.collapse.in { border-radius: 0.25rem; } -.tag:empty { +.badge:empty { display: none; } -.btn .tag { +.btn .badge { position: relative; top: -1px; } -a.tag:focus, a.tag:hover { +a.badge:focus, a.badge:hover { color: #fff; text-decoration: none; cursor: pointer; } -.tag-pill { +.badge-pill { padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem; } -.tag-default { +.badge-default { background-color: #818a91; } -.tag-default[href]:focus, .tag-default[href]:hover { +.badge-default[href]:focus, .badge-default[href]:hover { background-color: #687077; } -.tag-primary { +.badge-primary { background-color: #0275d8; } -.tag-primary[href]:focus, .tag-primary[href]:hover { +.badge-primary[href]:focus, .badge-primary[href]:hover { background-color: #025aa5; } -.tag-success { +.badge-success { background-color: #5cb85c; } -.tag-success[href]:focus, .tag-success[href]:hover { +.badge-success[href]:focus, .badge-success[href]:hover { background-color: #449d44; } -.tag-info { +.badge-info { background-color: #5bc0de; } -.tag-info[href]:focus, .tag-info[href]:hover { +.badge-info[href]:focus, .badge-info[href]:hover { background-color: #31b0d5; } -.tag-warning { +.badge-warning { background-color: #f0ad4e; } -.tag-warning[href]:focus, .tag-warning[href]:hover { +.badge-warning[href]:focus, .badge-warning[href]:hover { background-color: #ec971f; } -.tag-danger { +.badge-danger { background-color: #d9534f; } -.tag-danger[href]:focus, .tag-danger[href]:hover { +.badge-danger[href]:focus, .badge-danger[href]:hover { background-color: #c9302c; } @@ -5115,6 +5156,14 @@ base::-moz-progress-bar, border-radius: 0; } +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; +} + .list-group-item-action { width: 100%; color: #555; @@ -5356,7 +5405,7 @@ button.close { transform: translate(0, -25%); } -.modal.in .modal-dialog { +.modal.active .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); @@ -5398,7 +5447,7 @@ button.close { opacity: 0; } -.modal-backdrop.in { +.modal-backdrop.active { opacity: 0.5; } @@ -5486,7 +5535,7 @@ button.close { opacity: 0; } -.tooltip.in { +.tooltip.active { opacity: 0.9; } -- cgit v1.2.3 From fde7101f13f1106727334afa2a56ddc5272b3d36 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Oct 2016 20:03:56 -0700 Subject: grunt --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 792fa8f10..1854531d8 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -329,6 +329,7 @@ html { body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1rem; + font-weight: normal; line-height: 1.5; color: #373a3c; background-color: #fff; -- cgit v1.2.3 From 96d8553becfdf219c40e046e1202d4f2a2723010 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Oct 2016 22:11:22 -0700 Subject: grunt --- dist/css/bootstrap.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 1854531d8..e0711a1ea 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3472,6 +3472,7 @@ tbody.collapse.active { .custom-control { position: relative; display: inline-block; + min-height: 1.5rem; padding-left: 1.5rem; cursor: pointer; } @@ -3513,7 +3514,7 @@ tbody.collapse.active { .custom-control-indicator { position: absolute; - top: .25rem; + top: 0.25rem; left: 0; display: block; width: 1rem; -- cgit v1.2.3 From cecf0db2ce5e4687579d9510dca6cc205ef43d7b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Oct 2016 22:29:10 -0700 Subject: grunt --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index e0711a1ea..7d4574140 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3610,6 +3610,7 @@ tbody.collapse.active { display: inline-block; max-width: 100%; height: 2.5rem; + margin-bottom: 0; cursor: pointer; } -- cgit v1.2.3 From b071de65c75234ea25d8b2daf00245fe46896dbb Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 28 Oct 2016 19:28:41 -0700 Subject: grunt --- dist/css/bootstrap.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 7d4574140..2db0d34cf 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2210,6 +2210,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-success .form-control-feedback, .has-success .form-control-label, +.has-success .col-form-label, .has-success .form-check-label, .has-success .form-check-inline, .has-success .custom-control { @@ -2232,6 +2233,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-warning .form-control-feedback, .has-warning .form-control-label, +.has-warning .col-form-label, .has-warning .form-check-label, .has-warning .form-check-inline, .has-warning .custom-control { @@ -2254,6 +2256,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-danger .form-control-feedback, .has-danger .form-control-label, +.has-danger .col-form-label, .has-danger .form-check-label, .has-danger .form-check-inline, .has-danger .custom-control { -- cgit v1.2.3 From c9dc04b4f50ee78ca9cd513b5832245c2ab64c95 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 30 Oct 2016 13:37:11 -0700 Subject: grunt --- dist/css/bootstrap.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 2db0d34cf..32aa438d4 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4116,6 +4116,10 @@ tbody.collapse.active { background-color: rgba(0, 0, 0, 0.075); } +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + .navbar-dark .navbar-brand, .navbar-dark .navbar-toggler { color: white; @@ -4157,6 +4161,10 @@ tbody.collapse.active { background-color: rgba(255, 255, 255, 0.075); } +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + .navbar-toggleable-xs::after { content: ""; display: table; -- cgit v1.2.3 From d86d580d261f47f022cdb6bd8fe0615d4487e3da Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 30 Oct 2016 13:40:11 -0700 Subject: grunt --- dist/css/bootstrap.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 32aa438d4..c7fea1ba4 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1936,14 +1936,14 @@ pre code { } .table-inverse { - color: #eceeef; + color: #fff; background-color: #373a3c; } .table-inverse th, .table-inverse td, .table-inverse thead th { - border-color: #55595c; + border-color: #fff; } .table-inverse.table-bordered { @@ -6047,7 +6047,7 @@ button.close { } .bg-faded { - background-color: #f7f7f9; + background-color: #f7f7f7; } .bg-primary { -- cgit v1.2.3 From d1171ac44ad05a1b7244900b690840093d3e5573 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 30 Oct 2016 15:21:53 -0700 Subject: grunt --- dist/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index c7fea1ba4..d51ba5393 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5109,8 +5109,8 @@ base::-moz-progress-bar, } .list-group-item { - position: relative; display: block; + position: relative; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; -- cgit v1.2.3 From 76d53404b552c9870c3d3bf0e1f8976bb3136f13 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 31 Oct 2016 21:14:23 -0700 Subject: grunt --- dist/css/bootstrap.css | 1448 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 1408 insertions(+), 40 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d51ba5393..6e5239014 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6268,91 +6268,151 @@ a.bg-inverse:focus, a.bg-inverse:hover { } .m-1 { - margin: 1rem 1rem !important; + margin: 0.25rem 0.25rem !important; } .mt-1 { - margin-top: 1rem !important; + margin-top: 0.25rem !important; } .mr-1 { - margin-right: 1rem !important; + margin-right: 0.25rem !important; } .mb-1 { - margin-bottom: 1rem !important; + margin-bottom: 0.25rem !important; } .ml-1 { - margin-left: 1rem !important; + margin-left: 0.25rem !important; } .mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem 0.5rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mr-2 { + margin-right: 0.5rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2 { + margin-left: 0.5rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.m-3 { + margin: 1rem 1rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mr-3 { margin-right: 1rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.ml-3 { margin-left: 1rem !important; } -.my-1 { +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; } -.m-2 { +.m-4 { margin: 1.5rem 1.5rem !important; } -.mt-2 { +.mt-4 { margin-top: 1.5rem !important; } -.mr-2 { +.mr-4 { margin-right: 1.5rem !important; } -.mb-2 { +.mb-4 { margin-bottom: 1.5rem !important; } -.ml-2 { +.ml-4 { margin-left: 1.5rem !important; } -.mx-2 { +.mx-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; } -.my-2 { +.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } -.m-3 { +.m-5 { margin: 3rem 3rem !important; } -.mt-3 { +.mt-5 { margin-top: 3rem !important; } -.mr-3 { +.mr-5 { margin-right: 3rem !important; } -.mb-3 { +.mb-5 { margin-bottom: 3rem !important; } -.ml-3 { +.ml-5 { margin-left: 3rem !important; } -.mx-3 { +.mx-5 { margin-right: 3rem !important; margin-left: 3rem !important; } -.my-3 { +.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; } @@ -6388,95 +6448,1403 @@ a.bg-inverse:focus, a.bg-inverse:hover { } .p-1 { - padding: 1rem 1rem !important; + padding: 0.25rem 0.25rem !important; } .pt-1 { - padding-top: 1rem !important; + padding-top: 0.25rem !important; } .pr-1 { - padding-right: 1rem !important; + padding-right: 0.25rem !important; } .pb-1 { - padding-bottom: 1rem !important; + padding-bottom: 0.25rem !important; } .pl-1 { - padding-left: 1rem !important; + padding-left: 0.25rem !important; } .px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem 0.5rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pr-2 { + padding-right: 0.5rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2 { + padding-left: 0.5rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.p-3 { + padding: 1rem 1rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pr-3 { + padding-right: 1rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pl-3 { + padding-left: 1rem !important; +} + +.px-3 { padding-right: 1rem !important; padding-left: 1rem !important; } -.py-1 { +.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; } -.p-2 { +.p-4 { padding: 1.5rem 1.5rem !important; } -.pt-2 { +.pt-4 { padding-top: 1.5rem !important; } -.pr-2 { +.pr-4 { padding-right: 1.5rem !important; } -.pb-2 { +.pb-4 { padding-bottom: 1.5rem !important; } -.pl-2 { +.pl-4 { padding-left: 1.5rem !important; } -.px-2 { +.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; } -.py-2 { +.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } -.p-3 { +.p-5 { padding: 3rem 3rem !important; } -.pt-3 { +.pt-5 { padding-top: 3rem !important; } -.pr-3 { +.pr-5 { padding-right: 3rem !important; } -.pb-3 { +.pb-5 { padding-bottom: 3rem !important; } -.pl-3 { +.pl-5 { padding-left: 3rem !important; } -.px-3 { +.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; } -.py-3 { +.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; } +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-0 { + margin: 0 0 !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0 { + margin-left: 0 !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-1 { + margin: 0.25rem 0.25rem !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1 { + margin-left: 0.25rem !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-2 { + margin: 0.5rem 0.5rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2 { + margin-left: 0.5rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-3 { + margin: 1rem 1rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3 { + margin-left: 1rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-4 { + margin: 1.5rem 1.5rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4 { + margin-left: 1.5rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .m-sm-5 { + margin: 3rem 3rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5 { + margin-left: 3rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-0 { + padding: 0 0 !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0 { + padding-left: 0 !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-1 { + padding: 0.25rem 0.25rem !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1 { + padding-left: 0.25rem !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-2 { + padding: 0.5rem 0.5rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2 { + padding-left: 0.5rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-3 { + padding: 1rem 1rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3 { + padding-left: 1rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-4 { + padding: 1.5rem 1.5rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4 { + padding-left: 1.5rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } +} + +@media (min-width: 576px) and (min-width: 576px) { + .p-sm-5 { + padding: 3rem 3rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5 { + padding-left: 3rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-0 { + margin: 0 0 !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mr-md-0 { + margin-right: 0 !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0 { + margin-left: 0 !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-1 { + margin: 0.25rem 0.25rem !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1 { + margin-left: 0.25rem !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-2 { + margin: 0.5rem 0.5rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2 { + margin-left: 0.5rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-3 { + margin: 1rem 1rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mr-md-3 { + margin-right: 1rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3 { + margin-left: 1rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-4 { + margin: 1.5rem 1.5rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4 { + margin-left: 1.5rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .m-md-5 { + margin: 3rem 3rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mr-md-5 { + margin-right: 3rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5 { + margin-left: 3rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-0 { + padding: 0 0 !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pr-md-0 { + padding-right: 0 !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0 { + padding-left: 0 !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-1 { + padding: 0.25rem 0.25rem !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1 { + padding-left: 0.25rem !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-2 { + padding: 0.5rem 0.5rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2 { + padding-left: 0.5rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-3 { + padding: 1rem 1rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pr-md-3 { + padding-right: 1rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3 { + padding-left: 1rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-4 { + padding: 1.5rem 1.5rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4 { + padding-left: 1.5rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .p-md-5 { + padding: 3rem 3rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pr-md-5 { + padding-right: 3rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5 { + padding-left: 3rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-0 { + margin: 0 0 !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0 { + margin-left: 0 !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-1 { + margin: 0.25rem 0.25rem !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1 { + margin-left: 0.25rem !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-2 { + margin: 0.5rem 0.5rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2 { + margin-left: 0.5rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-3 { + margin: 1rem 1rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3 { + margin-left: 1rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-4 { + margin: 1.5rem 1.5rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4 { + margin-left: 1.5rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .m-lg-5 { + margin: 3rem 3rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5 { + margin-left: 3rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-0 { + padding: 0 0 !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0 { + padding-left: 0 !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-1 { + padding: 0.25rem 0.25rem !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1 { + padding-left: 0.25rem !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-2 { + padding: 0.5rem 0.5rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2 { + padding-left: 0.5rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-3 { + padding: 1rem 1rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3 { + padding-left: 1rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-4 { + padding: 1.5rem 1.5rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4 { + padding-left: 1.5rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .p-lg-5 { + padding: 3rem 3rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5 { + padding-left: 3rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-0 { + margin: 0 0 !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0 { + margin-left: 0 !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-1 { + margin: 0.25rem 0.25rem !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1 { + margin-left: 0.25rem !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-2 { + margin: 0.5rem 0.5rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2 { + margin-left: 0.5rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-3 { + margin: 1rem 1rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3 { + margin-left: 1rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-4 { + margin: 1.5rem 1.5rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4 { + margin-left: 1.5rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .m-xl-5 { + margin: 3rem 3rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5 { + margin-left: 3rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-0 { + padding: 0 0 !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0 { + padding-left: 0 !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-1 { + padding: 0.25rem 0.25rem !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1 { + padding-left: 0.25rem !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-2 { + padding: 0.5rem 0.5rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2 { + padding-left: 0.5rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-3 { + padding: 1rem 1rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3 { + padding-left: 1rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-4 { + padding: 1.5rem 1.5rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4 { + padding-left: 1.5rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .p-xl-5 { + padding: 3rem 3rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5 { + padding-left: 3rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } +} + .pos-f-t { position: fixed; top: 0; -- cgit v1.2.3 From cd5c7a2263c33e7c4fe7f5db205ff93fbe17750f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 31 Oct 2016 21:36:10 -0700 Subject: grunt --- dist/css/bootstrap.css | 149 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 138 insertions(+), 11 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 6e5239014..1bbadb1d9 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6132,31 +6132,158 @@ a.bg-inverse:focus, a.bg-inverse:hover { clear: both; } -.d-block { - display: block !important; +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; } .d-inline-block { display: inline-block !important; } -.d-inline { - display: inline !important; +.d-block { + display: block !important; } -.float-xs-left { +.d-table { + display: table !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; +} + +@media (min-width: 576px) and (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + } +} + +@media (min-width: 768px) and (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + } +} + +@media (min-width: 992px) and (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + } +} + +@media (min-width: 1200px) and (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + } +} + +.float-left { float: left !important; } -.float-xs-right { +.float-right { float: right !important; } -.float-xs-none { +.float-none { float: none !important; } -@media (min-width: 576px) { +@media (min-width: 576px) and (min-width: 576px) { .float-sm-left { float: left !important; } @@ -6168,7 +6295,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) { +@media (min-width: 768px) and (min-width: 768px) { .float-md-left { float: left !important; } @@ -6180,7 +6307,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) { +@media (min-width: 992px) and (min-width: 992px) { .float-lg-left { float: left !important; } @@ -6192,7 +6319,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) { +@media (min-width: 1200px) and (min-width: 1200px) { .float-xl-left { float: left !important; } -- cgit v1.2.3 From 93ba9ac629a29bb8709989ba4be8a26b0b6d87d5 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 9 Nov 2016 20:00:16 -0800 Subject: grunt --- dist/css/bootstrap.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 1bbadb1d9..f4757447a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -240,7 +240,10 @@ textarea { *, *::before, *::after, - *::first-letter, + p::first-letter, + div::first-letter, + blockquote::first-letter, + li::first-letter, p::first-line, div::first-line, blockquote::first-line, -- cgit v1.2.3 From 573e029feb7837d479c9553d9fb26b2a015cf140 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 16 Nov 2016 20:42:40 -0800 Subject: grunt --- dist/css/bootstrap.css | 110 ++++++++++++++++++++++++------------------------- 1 file changed, 55 insertions(+), 55 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f4757447a..70c8a3934 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -291,7 +291,7 @@ textarea { .dropup > .btn > .caret { border-top-color: #000 !important; } - .tag { + .badge { border: 1px solid #000; } .table { @@ -897,7 +897,7 @@ pre code { } } -.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { position: relative; min-height: 1px; padding-right: 15px; @@ -905,238 +905,238 @@ pre code { } @media (min-width: 576px) { - .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 768px) { - .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 992px) { - .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 1200px) { - .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } -.col-xs-1 { +.col-1 { float: left; width: 8.333333%; } -.col-xs-2 { +.col-2 { float: left; width: 16.666667%; } -.col-xs-3 { +.col-3 { float: left; width: 25%; } -.col-xs-4 { +.col-4 { float: left; width: 33.333333%; } -.col-xs-5 { +.col-5 { float: left; width: 41.666667%; } -.col-xs-6 { +.col-6 { float: left; width: 50%; } -.col-xs-7 { +.col-7 { float: left; width: 58.333333%; } -.col-xs-8 { +.col-8 { float: left; width: 66.666667%; } -.col-xs-9 { +.col-9 { float: left; width: 75%; } -.col-xs-10 { +.col-10 { float: left; width: 83.333333%; } -.col-xs-11 { +.col-11 { float: left; width: 91.666667%; } -.col-xs-12 { +.col-12 { float: left; width: 100%; } -.pull-xs-0 { +.pull-0 { right: auto; } -.pull-xs-1 { +.pull-1 { right: 8.333333%; } -.pull-xs-2 { +.pull-2 { right: 16.666667%; } -.pull-xs-3 { +.pull-3 { right: 25%; } -.pull-xs-4 { +.pull-4 { right: 33.333333%; } -.pull-xs-5 { +.pull-5 { right: 41.666667%; } -.pull-xs-6 { +.pull-6 { right: 50%; } -.pull-xs-7 { +.pull-7 { right: 58.333333%; } -.pull-xs-8 { +.pull-8 { right: 66.666667%; } -.pull-xs-9 { +.pull-9 { right: 75%; } -.pull-xs-10 { +.pull-10 { right: 83.333333%; } -.pull-xs-11 { +.pull-11 { right: 91.666667%; } -.pull-xs-12 { +.pull-12 { right: 100%; } -.push-xs-0 { +.push-0 { left: auto; } -.push-xs-1 { +.push-1 { left: 8.333333%; } -.push-xs-2 { +.push-2 { left: 16.666667%; } -.push-xs-3 { +.push-3 { left: 25%; } -.push-xs-4 { +.push-4 { left: 33.333333%; } -.push-xs-5 { +.push-5 { left: 41.666667%; } -.push-xs-6 { +.push-6 { left: 50%; } -.push-xs-7 { +.push-7 { left: 58.333333%; } -.push-xs-8 { +.push-8 { left: 66.666667%; } -.push-xs-9 { +.push-9 { left: 75%; } -.push-xs-10 { +.push-10 { left: 83.333333%; } -.push-xs-11 { +.push-11 { left: 91.666667%; } -.push-xs-12 { +.push-12 { left: 100%; } -.offset-xs-1 { +.offset-1 { margin-left: 8.333333%; } -.offset-xs-2 { +.offset-2 { margin-left: 16.666667%; } -.offset-xs-3 { +.offset-3 { margin-left: 25%; } -.offset-xs-4 { +.offset-4 { margin-left: 33.333333%; } -.offset-xs-5 { +.offset-5 { margin-left: 41.666667%; } -.offset-xs-6 { +.offset-6 { margin-left: 50%; } -.offset-xs-7 { +.offset-7 { margin-left: 58.333333%; } -.offset-xs-8 { +.offset-8 { margin-left: 66.666667%; } -.offset-xs-9 { +.offset-9 { margin-left: 75%; } -.offset-xs-10 { +.offset-10 { margin-left: 83.333333%; } -.offset-xs-11 { +.offset-11 { margin-left: 91.666667%; } -- cgit v1.2.3 From 5b151eb891ac9fb188af4448f9f497125c4f74a3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 25 Nov 2016 13:55:34 -0800 Subject: grunt --- dist/css/bootstrap.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 70c8a3934..1e5b1630e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4612,13 +4612,13 @@ tbody.collapse.active { padding: 0.5rem 0.75rem; margin-left: -1px; color: #0275d8; - text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .page-link:focus, .page-link:hover { color: #014c8c; + text-decoration: none; background-color: #eceeef; border-color: #ddd; } @@ -5117,7 +5117,7 @@ base::-moz-progress-bar, padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; - border: 1px solid #ddd; + border: 1px solid rgba(0, 0, 0, 0.125); } .list-group-item:first-child { -- cgit v1.2.3 From 3cfd40782cfb9a158bb7b0f0bed415f4e296f6ca Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 25 Nov 2016 14:20:49 -0800 Subject: grunt --- dist/css/bootstrap.css | 122 +++++++++++++++++++++++++++---------------------- 1 file changed, 67 insertions(+), 55 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 1e5b1630e..08754ad9c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4,7 +4,7 @@ * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ -/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ +/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; line-height: 1.15; @@ -18,38 +18,38 @@ body { article, aside, -details, -figcaption, -figure, footer, header, -main, -menu, nav, -section, -summary { +section { display: block; } -audio, -canvas, -progress, -video { - display: inline-block; +h1 { + font-size: 2em; + margin: 0.67em 0; } -audio:not([controls]) { - display: none; - height: 0; +figcaption, +figure, +main { + display: block; } -progress { - vertical-align: baseline; +figure { + margin: 1em 40px; } -template, -[hidden] { - display: none; +hr { + -webkit-box-sizing: content-box; + box-sizing: content-box; + height: 0; + overflow: visible; +} + +pre { + font-family: monospace, monospace; + font-size: 1em; } a { @@ -78,13 +78,15 @@ strong { font-weight: bolder; } -dfn { - font-style: italic; +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; } -h1 { - font-size: 2em; - margin: 0.67em 0; +dfn { + font-style: italic; } mark { @@ -112,31 +114,22 @@ sup { top: -0.5em; } -img { - border-style: none; -} - -svg:not(:root) { - overflow: hidden; +audio, +video { + display: inline-block; } -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; +audio:not([controls]) { + display: none; + height: 0; } -figure { - margin: 1em 40px; +img { + border-style: none; } -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - height: 0; - overflow: visible; +svg:not(:root) { + overflow: hidden; } button, @@ -144,14 +137,12 @@ input, optgroup, select, textarea { - font: inherit; + font-family: sans-serif; + font-size: 100%; + line-height: 1.15; margin: 0; } -optgroup { - font-weight: bold; -} - button, input { overflow: visible; @@ -200,6 +191,11 @@ legend { white-space: normal; } +progress { + display: inline-block; + vertical-align: baseline; +} + textarea { overflow: auto; } @@ -226,16 +222,32 @@ textarea { -webkit-appearance: none; } -::-webkit-input-placeholder { - color: inherit; - opacity: 0.54; -} - ::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; } +details, +menu { + display: block; +} + +summary { + display: list-item; +} + +canvas { + display: inline-block; +} + +template { + display: none; +} + +[hidden] { + display: none; +} + @media print { *, *::before, -- cgit v1.2.3 From 3593ee85c1c8aed948bbe636194fcd5f0988878e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 25 Nov 2016 14:51:55 -0800 Subject: Add @supports feature query for Carousel CSS 3D transforms; fixes #15534 (#19751) [skip sauce] [skip validator] --- dist/css/bootstrap.css | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 08754ad9c..99de7686c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5827,7 +5827,36 @@ button.close { line-height: 1; } -@media all and (transform-3d), (-webkit-transform-3d) { +@media (-webkit-transform-3d) { + .carousel-inner > .carousel-item { + -webkit-transition: -webkit-transform .6s ease-in-out; + transition: -webkit-transform .6s ease-in-out; + -o-transition: transform .6s ease-in-out, -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right { + left: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left { + left: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@supports ((-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0))) { .carousel-inner > .carousel-item { -webkit-transition: -webkit-transform .6s ease-in-out; transition: -webkit-transform .6s ease-in-out; -- cgit v1.2.3 From 49be9bc63af9391721287c189bf2f9150aad15bc Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 25 Nov 2016 15:00:23 -0800 Subject: grunt --- dist/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 99de7686c..5eb2f7f51 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5831,7 +5831,7 @@ button.close { .carousel-inner > .carousel-item { -webkit-transition: -webkit-transform .6s ease-in-out; transition: -webkit-transform .6s ease-in-out; - -o-transition: transform .6s ease-in-out, -o-transform .6s ease-in-out; + -o-transition: -o-transform .6s ease-in-out; transition: transform .6s ease-in-out; transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out; -webkit-backface-visibility: hidden; -- cgit v1.2.3 From 8a7ce25cf19e405f689b0b7938e14d51acc2b9b4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 25 Nov 2016 17:29:28 -0800 Subject: grunt --- dist/css/bootstrap.css | 98 +++++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 5eb2f7f51..44a25b514 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -346,7 +346,7 @@ body { font-size: 1rem; font-weight: normal; line-height: 1.5; - color: #373a3c; + color: #292b2c; background-color: #fff; } @@ -367,7 +367,7 @@ p { abbr[title], abbr[data-original-title] { cursor: help; - border-bottom: 1px dotted #818a91; + border-bottom: 1px dotted #636c72; } address { @@ -471,7 +471,7 @@ table { caption { padding-top: 0.75rem; padding-bottom: 0.75rem; - color: #818a91; + color: #636c72; text-align: left; caption-side: bottom; } @@ -651,7 +651,7 @@ mark, .blockquote-footer { display: block; font-size: 80%; - color: #818a91; + color: #636c72; } .blockquote-footer::before { @@ -707,7 +707,7 @@ dl.row > dd + dt { .figure-caption { font-size: 90%; - color: #818a91; + color: #636c72; } code, @@ -744,7 +744,7 @@ pre { margin-top: 0; margin-bottom: 1rem; font-size: 90%; - color: #373a3c; + color: #292b2c; } pre code { @@ -1942,17 +1942,17 @@ pre code { .thead-inverse th { color: #fff; - background-color: #373a3c; + background-color: #292b2c; } .thead-default th { - color: #55595c; + color: #464a4c; background-color: #eceeef; } .table-inverse { color: #fff; - background-color: #373a3c; + background-color: #292b2c; } .table-inverse th, @@ -2017,7 +2017,7 @@ pre code { padding: 0.5rem 0.75rem; font-size: 1rem; line-height: 1.25; - color: #55595c; + color: #464a4c; background-color: #fff; background-image: none; -webkit-background-clip: padding-box; @@ -2032,7 +2032,7 @@ pre code { } .form-control:focus { - color: #55595c; + color: #464a4c; background-color: #fff; border-color: #66afe9; outline: none; @@ -2072,7 +2072,7 @@ select.form-control:not([size]):not([multiple]) { } select.form-control:focus::-ms-value { - color: #55595c; + color: #464a4c; background-color: #fff; } @@ -2171,7 +2171,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-check.disabled .form-check-label { - color: #818a91; + color: #636c72; cursor: not-allowed; } @@ -2205,7 +2205,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-check-inline.disabled { - color: #818a91; + color: #636c72; cursor: not-allowed; } @@ -2433,26 +2433,26 @@ fieldset[disabled] a.btn { } .btn-secondary { - color: #373a3c; + color: #292b2c; background-color: #fff; border-color: #ccc; } .btn-secondary:hover { - color: #373a3c; + color: #292b2c; background-color: #e6e6e6; border-color: #adadad; } .btn-secondary:focus, .btn-secondary.focus { - color: #373a3c; + color: #292b2c; background-color: #e6e6e6; border-color: #adadad; } .btn-secondary:active, .btn-secondary.active, .open > .btn-secondary.dropdown-toggle { - color: #373a3c; + color: #292b2c; background-color: #e6e6e6; border-color: #adadad; background-image: none; @@ -2462,7 +2462,7 @@ fieldset[disabled] a.btn { .open > .btn-secondary.dropdown-toggle:hover, .open > .btn-secondary.dropdown-toggle:focus, .open > .btn-secondary.dropdown-toggle.focus { - color: #373a3c; + color: #292b2c; background-color: #d4d4d4; border-color: #8c8c8c; } @@ -2940,7 +2940,7 @@ fieldset[disabled] a.btn { } .btn-link:disabled:focus, .btn-link:disabled:hover { - color: #818a91; + color: #636c72; text-decoration: none; } @@ -3050,7 +3050,7 @@ tbody.collapse.active { padding: 0.5rem 0; margin: 0.125rem 0 0; font-size: 1rem; - color: #373a3c; + color: #292b2c; text-align: left; list-style: none; background-color: #fff; @@ -3073,7 +3073,7 @@ tbody.collapse.active { padding: 3px 1.5rem; clear: both; font-weight: normal; - color: #373a3c; + color: #292b2c; text-align: inherit; white-space: nowrap; background: none; @@ -3081,7 +3081,7 @@ tbody.collapse.active { } .dropdown-item:focus, .dropdown-item:hover { - color: #2b2d2f; + color: #1d1e1f; text-decoration: none; background-color: #f5f5f5; } @@ -3094,7 +3094,7 @@ tbody.collapse.active { } .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover { - color: #818a91; + color: #636c72; } .dropdown-item.disabled:focus, .dropdown-item.disabled:hover { @@ -3128,7 +3128,7 @@ tbody.collapse.active { padding: 0.5rem 1.5rem; margin-bottom: 0; font-size: 0.875rem; - color: #818a91; + color: #636c72; white-space: nowrap; } @@ -3393,7 +3393,7 @@ tbody.collapse.active { font-size: 1rem; font-weight: normal; line-height: 1.25; - color: #55595c; + color: #464a4c; text-align: center; background-color: #eceeef; border: 1px solid rgba(0, 0, 0, 0.15); @@ -3585,7 +3585,7 @@ tbody.collapse.active { height: calc(2.5rem - 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; padding-right: 0.75rem \9; - color: #55595c; + color: #464a4c; 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-image: none \9; @@ -3603,12 +3603,12 @@ tbody.collapse.active { } .custom-select:focus::-ms-value { - color: #55595c; + color: #464a4c; background-color: #fff; } .custom-select:disabled { - color: #818a91; + color: #636c72; cursor: not-allowed; background-color: #eceeef; } @@ -3698,11 +3698,11 @@ tbody.collapse.active { } .nav-link.disabled { - color: #818a91; + color: #636c72; } .nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover { - color: #818a91; + color: #636c72; cursor: not-allowed; background-color: transparent; } @@ -3748,7 +3748,7 @@ tbody.collapse.active { } .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover { - color: #818a91; + color: #636c72; background-color: transparent; border-color: transparent; } @@ -3757,7 +3757,7 @@ tbody.collapse.active { .nav-tabs .nav-item.open .nav-link, .nav-tabs .nav-item.open .nav-link:focus, .nav-tabs .nav-item.open .nav-link:hover { - color: #55595c; + color: #464a4c; background-color: #fff; border-color: #ddd #ddd transparent; } @@ -4563,7 +4563,7 @@ tbody.collapse.active { display: inline-block; padding-right: 0.5rem; padding-left: 0.5rem; - color: #818a91; + color: #636c72; content: "/"; } @@ -4576,7 +4576,7 @@ tbody.collapse.active { } .breadcrumb-item.active { - color: #818a91; + color: #636c72; } .pagination { @@ -4611,7 +4611,7 @@ tbody.collapse.active { } .page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover { - color: #818a91; + color: #636c72; pointer-events: none; cursor: not-allowed; background-color: #fff; @@ -4700,11 +4700,11 @@ a.badge:focus, a.badge:hover { } .badge-default { - background-color: #818a91; + background-color: #636c72; } .badge-default[href]:focus, .badge-default[href]:hover { - background-color: #687077; + background-color: #4b5257; } .badge-primary { @@ -5144,7 +5144,7 @@ base::-moz-progress-bar, } .list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover { - color: #818a91; + color: #636c72; cursor: not-allowed; background-color: #eceeef; } @@ -5154,7 +5154,7 @@ base::-moz-progress-bar, } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text { - color: #818a91; + color: #636c72; } .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover { @@ -5176,7 +5176,7 @@ base::-moz-progress-bar, } .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text { - color: #a8d6fe; + color: #daeeff; } .list-group-flush .list-group-item { @@ -5388,14 +5388,14 @@ button.list-group-item-danger.active:hover { line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; - opacity: .2; + opacity: .5; } .close:focus, .close:hover { color: #000; text-decoration: none; cursor: pointer; - opacity: .5; + opacity: .75; } button.close { @@ -6135,11 +6135,11 @@ a.bg-danger:focus, a.bg-danger:hover { } .bg-inverse { - background-color: #373a3c !important; + background-color: #292b2c !important; } a.bg-inverse:focus, a.bg-inverse:hover { - background-color: #1f2021 !important; + background-color: #101112 !important; } .rounded { @@ -8127,11 +8127,11 @@ a.bg-inverse:focus, a.bg-inverse:hover { } .text-muted { - color: #818a91 !important; + color: #636c72 !important; } a.text-muted:focus, a.text-muted:hover { - color: #687077 !important; + color: #4b5257 !important; } .text-primary { @@ -8175,11 +8175,11 @@ a.text-danger:focus, a.text-danger:hover { } .text-gray-dark { - color: #373a3c !important; + color: #292b2c !important; } a.text-gray-dark:focus, a.text-gray-dark:hover { - color: #1f2021 !important; + color: #101112 !important; } .text-hide { -- cgit v1.2.3 From cb294854a30b6764082ba957c410b51a59e13887 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 00:58:11 -0800 Subject: grunt --- 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 44a25b514..a24b2196d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3083,7 +3083,7 @@ tbody.collapse.active { .dropdown-item:focus, .dropdown-item:hover { color: #1d1e1f; text-decoration: none; - background-color: #f5f5f5; + background-color: #f7f7f9; } .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover { @@ -4290,7 +4290,7 @@ tbody.collapse.active { .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; - background-color: #f5f5f5; + background-color: #f7f7f9; border-bottom: 1px solid rgba(0, 0, 0, 0.125); } @@ -4306,7 +4306,7 @@ tbody.collapse.active { .card-footer { padding: 0.75rem 1.25rem; - background-color: #f5f5f5; + background-color: #f7f7f9; border-top: 1px solid rgba(0, 0, 0, 0.125); } @@ -5206,7 +5206,7 @@ base::-moz-progress-bar, .list-group-item-action:focus, .list-group-item-action:hover { color: #555; text-decoration: none; - background-color: #f5f5f5; + background-color: #f7f7f9; } .list-group-item-success { -- cgit v1.2.3 From c7b8451cdcd4930ba58af27a51d4247d1114a59b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 11:16:53 -0800 Subject: grunt --- dist/css/bootstrap.css | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a24b2196d..4993e53c7 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1970,6 +1970,11 @@ pre code { width: 100%; min-height: 0%; overflow-x: auto; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.table-responsive.table-bordered { + border: 0; } .table-reflow thead { @@ -2024,6 +2029,11 @@ pre code { background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0.25rem; + -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; + -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; } .form-control::-ms-expand { @@ -2357,6 +2367,9 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for padding: 0.5rem 1rem; font-size: 1rem; border-radius: 0.25rem; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; } .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { @@ -4109,6 +4122,10 @@ tbody.collapse.active { color: rgba(0, 0, 0, 0.7); } +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + .navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .active > .nav-link:focus, @@ -4154,6 +4171,10 @@ tbody.collapse.active { color: rgba(255, 255, 255, 0.75); } +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + .navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .active > .nav-link:focus, @@ -5527,7 +5548,7 @@ button.close { @media (min-width: 576px) { .modal-dialog { - max-width: 600px; + max-width: 500px; margin: 30px auto; } .modal-sm { @@ -5537,7 +5558,7 @@ button.close { @media (min-width: 992px) { .modal-lg { - max-width: 900px; + max-width: 800px; } } -- cgit v1.2.3 From 36bf06f520cf1bf9cb09ce5d3cd46300ffbba19e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 13:42:46 -0800 Subject: grunt --- dist/css/bootstrap.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 4993e53c7..1d38e1ade 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -909,6 +909,16 @@ pre code { } } +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { position: relative; min-height: 1px; -- cgit v1.2.3 From b456cb351d056b5884e9f0c089b28e84f08ee256 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 16:49:39 -0800 Subject: grunt --- dist/css/bootstrap.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 1d38e1ade..531a02965 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6173,6 +6173,26 @@ a.bg-inverse:focus, a.bg-inverse:hover { background-color: #101112 !important; } +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + .rounded { border-radius: 0.25rem; } @@ -6201,6 +6221,10 @@ a.bg-inverse:focus, a.bg-inverse:hover { border-radius: 50%; } +.rounded-0 { + border-radius: 0; +} + .clearfix::after { content: ""; display: table; -- cgit v1.2.3 From e17e75b7574d6877facb0eadd977c025a09fd749 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 16:55:18 -0800 Subject: Update inline forms (updated docs and new flexbox styles) (#21212) * fix form-inline with flex enabled * grunt * fix alignment of labels * shorter if syntax * add new form example to docs for now * update inline form docs usage guidelines * responsive margins * better margin utils * fix sizing of .form-check * flexbox alignment of .form-check * no need to change direction * support custom controls in inline form, for default and flex modes * add example of custom select and checks to docs * remove hidden and visible label variants since we cover that in the usage guidelines at the start and include hidden labels everywhere * use property value instead of layout name * apply to all labels * add a visible label, space it out * add id --- dist/css/bootstrap.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 531a02965..d86305c65 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2315,8 +2315,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for @media (min-width: 576px) { .form-inline .form-group { display: inline-block; - margin-bottom: 0; vertical-align: middle; + margin-bottom: 0; } .form-inline .form-control { display: inline-block; @@ -2327,8 +2327,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for display: inline-block; } .form-inline .input-group { - display: inline-table; width: auto; + display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, -- cgit v1.2.3 From 181e124bc1fed117a562698cafcc3be6b107eb65 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 17:01:17 -0800 Subject: grunt --- dist/css/bootstrap.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d86305c65..f18c5cc23 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2313,6 +2313,9 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } @media (min-width: 576px) { + .form-inline label { + margin-bottom: 0; + } .form-inline .form-group { display: inline-block; vertical-align: middle; @@ -2345,9 +2348,10 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .form-check { display: inline-block; + vertical-align: middle; + width: auto; margin-top: 0; margin-bottom: 0; - vertical-align: middle; } .form-inline .form-check-label { padding-left: 0; @@ -2356,6 +2360,15 @@ 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; + vertical-align: middle; + } + .form-inline .custom-control-indicator { + position: static; + display: inline-block; + vertical-align: text-bottom; + } .form-inline .has-feedback .form-control-feedback { top: 0; } -- cgit v1.2.3 From 0b8a2819201076a8e93cd387aecf13d8c419990e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 26 Nov 2016 19:17:23 -0800 Subject: grunt --- dist/css/bootstrap.css | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f18c5cc23..cf08263d3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4928,6 +4928,7 @@ a.badge:focus, a.badge:hover { width: 100%; height: 1rem; margin-bottom: 1rem; + overflow: hidden; } .progress[value] { @@ -4946,35 +4947,19 @@ a.badge:focus, a.badge:hover { .progress[value]::-moz-progress-bar { background-color: #0074d9; - border-bottom-left-radius: 0.25rem; - border-top-left-radius: 0.25rem; } .progress[value]::-webkit-progress-value { background-color: #0074d9; - border-bottom-left-radius: 0.25rem; - border-top-left-radius: 0.25rem; -} - -.progress[value="100"]::-moz-progress-bar { - border-bottom-right-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.progress[value="100"]::-webkit-progress-value { - border-bottom-right-radius: 0.25rem; - border-top-right-radius: 0.25rem; } .progress[value]::-webkit-progress-bar { background-color: #eee; - border-radius: 0.25rem; } base::-moz-progress-bar, .progress[value] { background-color: #eee; - border-radius: 0.25rem; } @media screen and (min-width: 0\0) { @@ -4987,12 +4972,6 @@ base::-moz-progress-bar, height: 1rem; text-indent: -999rem; background-color: #0074d9; - border-bottom-left-radius: 0.25rem; - border-top-left-radius: 0.25rem; - } - .progress[width="100%"] { - border-bottom-right-radius: 0.25rem; - border-top-right-radius: 0.25rem; } } -- cgit v1.2.3 From 4393da18f60d9d99a32b8382d33085dc4229e250 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 27 Nov 2016 22:29:55 -0800 Subject: grunt --- dist/css/bootstrap.css | 418 +++++++++++++++++++++++-------------------------- 1 file changed, 195 insertions(+), 223 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index cf08263d3..196022a30 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -768,8 +768,8 @@ pre code { } .container::after { + display: block; content: ""; - display: table; clear: both; } @@ -837,8 +837,8 @@ pre code { } .container-fluid::after { + display: block; content: ""; - display: table; clear: both; } @@ -876,8 +876,8 @@ pre code { } .row::after { + display: block; content: ""; - display: table; clear: both; } @@ -3229,8 +3229,8 @@ tbody.collapse.active { } .btn-toolbar::after { + display: block; content: ""; - display: table; clear: both; } @@ -3330,8 +3330,8 @@ tbody.collapse.active { } .btn-group-vertical > .btn-group::after { + display: block; content: ""; - display: table; clear: both; } @@ -3757,8 +3757,8 @@ tbody.collapse.active { } .nav-tabs::after { + display: block; content: ""; - display: table; clear: both; } @@ -3805,8 +3805,8 @@ tbody.collapse.active { } .nav-pills::after { + display: block; content: ""; - display: table; clear: both; } @@ -3857,8 +3857,8 @@ tbody.collapse.active { } .navbar::after { + display: block; content: ""; - display: table; clear: both; } @@ -3965,149 +3965,6 @@ tbody.collapse.active { text-decoration: none; } -.navbar-toggleable-xs::after { - content: ""; - display: table; - clear: both; -} - -@media (max-width: 575px) { - .navbar-toggleable-xs .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-xs .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } - .navbar-toggleable-xs .navbar-nav .dropdown-menu { - position: static; - float: none; - } -} - -@media (min-width: 576px) { - .navbar-toggleable-xs { - display: block; - } -} - -.navbar-toggleable-sm::after { - content: ""; - display: table; - clear: both; -} - -@media (max-width: 767px) { - .navbar-toggleable-sm .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-sm .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } - .navbar-toggleable-sm .navbar-nav .dropdown-menu { - position: static; - float: none; - } -} - -@media (min-width: 768px) { - .navbar-toggleable-sm { - display: block; - } -} - -.navbar-toggleable-md::after { - content: ""; - display: table; - clear: both; -} - -@media (max-width: 991px) { - .navbar-toggleable-md .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-md .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } - .navbar-toggleable-md .navbar-nav .dropdown-menu { - position: static; - float: none; - } -} - -@media (min-width: 992px) { - .navbar-toggleable-md { - display: block; - } -} - -.navbar-toggleable-lg::after { - content: ""; - display: table; - clear: both; -} - -@media (max-width: 1199px) { - .navbar-toggleable-lg .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-lg .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } - .navbar-toggleable-lg .navbar-nav .dropdown-menu { - position: static; - float: none; - } -} - -@media (min-width: 1200px) { - .navbar-toggleable-lg { - display: block; - } -} - -.navbar-toggleable-xl { - display: block; -} - -.navbar-toggleable-xl::after { - content: ""; - display: table; - clear: both; -} - -.navbar-toggleable-xl .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; -} - -.navbar-toggleable-xl .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; -} - -.navbar-toggleable-xl .navbar-nav .dropdown-menu { - position: static; - float: none; -} - .navbar-nav .nav-item { float: left; } @@ -4224,32 +4081,60 @@ tbody.collapse.active { color: rgba(255, 255, 255, 0.5); } -.navbar-toggleable-xs::after { +.navbar-toggleable::after { + display: block; content: ""; - display: table; clear: both; } @media (max-width: 575px) { - .navbar-toggleable-xs .navbar-nav .nav-item { + .navbar-toggleable .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable .navbar-nav .dropdown-menu { + position: static; + float: none; + } + .navbar-toggleable .navbar-nav .nav-item { float: none; margin-left: 0; } } @media (min-width: 576px) { - .navbar-toggleable-xs { + .navbar-toggleable { display: block !important; } } .navbar-toggleable-sm::after { + display: block; content: ""; - display: table; clear: both; } @media (max-width: 767px) { + .navbar-toggleable-sm .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-sm .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-sm .navbar-nav .dropdown-menu { + position: static; + float: none; + } .navbar-toggleable-sm .navbar-nav .nav-item { float: none; margin-left: 0; @@ -4263,12 +4148,26 @@ tbody.collapse.active { } .navbar-toggleable-md::after { + display: block; content: ""; - display: table; clear: both; } @media (max-width: 991px) { + .navbar-toggleable-md .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-md .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-md .navbar-nav .dropdown-menu { + position: static; + float: none; + } .navbar-toggleable-md .navbar-nav .nav-item { float: none; margin-left: 0; @@ -4281,6 +4180,71 @@ tbody.collapse.active { } } +.navbar-toggleable-lg::after { + display: block; + content: ""; + clear: both; +} + +@media (max-width: 1199px) { + .navbar-toggleable-lg .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; + } + .navbar-toggleable-lg .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; + } + .navbar-toggleable-lg .navbar-nav .dropdown-menu { + position: static; + float: none; + } + .navbar-toggleable-lg .navbar-nav .nav-item { + float: none; + margin-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-toggleable-lg { + display: block !important; + } +} + +.navbar-toggleable-xl { + display: block !important; +} + +.navbar-toggleable-xl::after { + display: block; + content: ""; + clear: both; +} + +.navbar-toggleable-xl .navbar-brand { + display: block; + float: none; + margin-top: .5rem; + margin-right: 0; +} + +.navbar-toggleable-xl .navbar-nav { + margin-top: .5rem; + margin-bottom: .5rem; +} + +.navbar-toggleable-xl .navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-toggleable-xl .navbar-nav .nav-item { + float: none; + margin-left: 0; +} + .card { position: relative; display: block; @@ -4295,8 +4259,8 @@ tbody.collapse.active { } .card-block::after { + display: block; content: ""; - display: table; clear: both; } @@ -4339,8 +4303,8 @@ tbody.collapse.active { } .card-header::after { + display: block; content: ""; - display: table; clear: both; } @@ -4355,8 +4319,8 @@ tbody.collapse.active { } .card-footer::after { + display: block; content: ""; - display: table; clear: both; } @@ -4594,8 +4558,8 @@ tbody.collapse.active { } .breadcrumb::after { + display: block; content: ""; - display: table; clear: both; } @@ -5509,8 +5473,8 @@ button.close { } .modal-header::after { + display: block; content: ""; - display: table; clear: both; } @@ -5535,8 +5499,8 @@ button.close { } .modal-footer::after { + display: block; content: ""; - display: table; clear: both; } @@ -6218,8 +6182,8 @@ a.bg-inverse:focus, a.bg-inverse:hover { } .clearfix::after { + display: block; content: ""; - display: table; clear: both; } @@ -6254,7 +6218,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: flex !important; } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .d-sm-none { display: none !important; } @@ -6281,7 +6245,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .d-md-none { display: none !important; } @@ -6308,7 +6272,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .d-lg-none { display: none !important; } @@ -6335,7 +6299,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .d-xl-none { display: none !important; } @@ -6374,7 +6338,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { float: none !important; } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .float-sm-left { float: left !important; } @@ -6386,7 +6350,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .float-md-left { float: left !important; } @@ -6398,7 +6362,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .float-lg-left { float: left !important; } @@ -6410,7 +6374,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .float-xl-left { float: left !important; } @@ -6450,6 +6414,14 @@ a.bg-inverse:focus, a.bg-inverse:hover { height: 100% !important; } +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + .mx-auto { margin-right: auto !important; margin-left: auto !important; @@ -6815,7 +6787,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-bottom: 3rem !important; } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-0 { margin: 0 0 !important; } @@ -6841,7 +6813,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-1 { margin: 0.25rem 0.25rem !important; } @@ -6867,7 +6839,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-2 { margin: 0.5rem 0.5rem !important; } @@ -6893,7 +6865,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-3 { margin: 1rem 1rem !important; } @@ -6919,7 +6891,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-4 { margin: 1.5rem 1.5rem !important; } @@ -6945,7 +6917,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .m-sm-5 { margin: 3rem 3rem !important; } @@ -6971,7 +6943,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-0 { padding: 0 0 !important; } @@ -6997,7 +6969,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-1 { padding: 0.25rem 0.25rem !important; } @@ -7023,7 +6995,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-2 { padding: 0.5rem 0.5rem !important; } @@ -7049,7 +7021,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-3 { padding: 1rem 1rem !important; } @@ -7075,7 +7047,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-4 { padding: 1.5rem 1.5rem !important; } @@ -7101,7 +7073,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 576px) and (min-width: 576px) { +@media (min-width: 576px) { .p-sm-5 { padding: 3rem 3rem !important; } @@ -7127,7 +7099,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-0 { margin: 0 0 !important; } @@ -7153,7 +7125,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-1 { margin: 0.25rem 0.25rem !important; } @@ -7179,7 +7151,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-2 { margin: 0.5rem 0.5rem !important; } @@ -7205,7 +7177,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-3 { margin: 1rem 1rem !important; } @@ -7231,7 +7203,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-4 { margin: 1.5rem 1.5rem !important; } @@ -7257,7 +7229,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .m-md-5 { margin: 3rem 3rem !important; } @@ -7283,7 +7255,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-0 { padding: 0 0 !important; } @@ -7309,7 +7281,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-1 { padding: 0.25rem 0.25rem !important; } @@ -7335,7 +7307,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-2 { padding: 0.5rem 0.5rem !important; } @@ -7361,7 +7333,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-3 { padding: 1rem 1rem !important; } @@ -7387,7 +7359,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-4 { padding: 1.5rem 1.5rem !important; } @@ -7413,7 +7385,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 768px) and (min-width: 768px) { +@media (min-width: 768px) { .p-md-5 { padding: 3rem 3rem !important; } @@ -7439,7 +7411,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-0 { margin: 0 0 !important; } @@ -7465,7 +7437,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-1 { margin: 0.25rem 0.25rem !important; } @@ -7491,7 +7463,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-2 { margin: 0.5rem 0.5rem !important; } @@ -7517,7 +7489,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-3 { margin: 1rem 1rem !important; } @@ -7543,7 +7515,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-4 { margin: 1.5rem 1.5rem !important; } @@ -7569,7 +7541,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .m-lg-5 { margin: 3rem 3rem !important; } @@ -7595,7 +7567,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-0 { padding: 0 0 !important; } @@ -7621,7 +7593,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-1 { padding: 0.25rem 0.25rem !important; } @@ -7647,7 +7619,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-2 { padding: 0.5rem 0.5rem !important; } @@ -7673,7 +7645,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-3 { padding: 1rem 1rem !important; } @@ -7699,7 +7671,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-4 { padding: 1.5rem 1.5rem !important; } @@ -7725,7 +7697,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 992px) and (min-width: 992px) { +@media (min-width: 992px) { .p-lg-5 { padding: 3rem 3rem !important; } @@ -7751,7 +7723,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-0 { margin: 0 0 !important; } @@ -7777,7 +7749,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-1 { margin: 0.25rem 0.25rem !important; } @@ -7803,7 +7775,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-2 { margin: 0.5rem 0.5rem !important; } @@ -7829,7 +7801,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-3 { margin: 1rem 1rem !important; } @@ -7855,7 +7827,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-4 { margin: 1.5rem 1.5rem !important; } @@ -7881,7 +7853,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .m-xl-5 { margin: 3rem 3rem !important; } @@ -7907,7 +7879,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-0 { padding: 0 0 !important; } @@ -7933,7 +7905,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-1 { padding: 0.25rem 0.25rem !important; } @@ -7959,7 +7931,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-2 { padding: 0.5rem 0.5rem !important; } @@ -7985,7 +7957,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-3 { padding: 1rem 1rem !important; } @@ -8011,7 +7983,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-4 { padding: 1.5rem 1.5rem !important; } @@ -8037,7 +8009,7 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } -@media (min-width: 1200px) and (min-width: 1200px) { +@media (min-width: 1200px) { .p-xl-5 { padding: 3rem 3rem !important; } @@ -8085,15 +8057,15 @@ a.bg-inverse:focus, a.bg-inverse:hover { white-space: nowrap; } -.text-xs-left { +.text-left { text-align: left !important; } -.text-xs-right { +.text-right { text-align: right !important; } -.text-xs-center { +.text-center { text-align: center !important; } -- cgit v1.2.3 From 5357bad9a0eb70ebf0b3f9070e868d154b43f5a0 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 27 Nov 2016 23:39:50 -0800 Subject: grunt --- dist/css/bootstrap.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 196022a30..856b8dcae 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -914,12 +914,13 @@ pre code { margin-left: 0; } +.no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { position: relative; min-height: 1px; padding-right: 15px; @@ -927,28 +928,28 @@ pre code { } @media (min-width: 576px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 768px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 992px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } } @media (min-width: 1200px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { padding-right: 15px; padding-left: 15px; } @@ -4422,6 +4423,7 @@ tbody.collapse.active { .card-inverse .card-header, .card-inverse .card-footer { + background-color: transparent; border-color: rgba(255, 255, 255, 0.2); } @@ -4631,6 +4633,7 @@ tbody.collapse.active { float: left; padding: 0.5rem 0.75rem; margin-left: -1px; + line-height: 1.25; color: #0275d8; background-color: #fff; border: 1px solid #ddd; @@ -4659,7 +4662,7 @@ tbody.collapse.active { } .pagination-sm .page-link { - padding: 0.275rem 0.75rem; + padding: 0.25rem 0.5rem; font-size: 0.875rem; } -- cgit v1.2.3 From 9338cf597045f14ecaaaf54090eea61b8d807a37 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 Nov 2016 09:14:31 -0800 Subject: grunt --- dist/css/bootstrap.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 856b8dcae..b016b7904 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4796,14 +4796,11 @@ a.badge:focus, a.badge:hover { font-weight: bold; } -.alert-dismissible { - padding-right: 2.5rem; -} - .alert-dismissible .close { position: relative; - top: -.125rem; + top: -0.75rem; right: -1.25rem; + padding: 0.75rem 1.25rem; color: inherit; } -- cgit v1.2.3 From d6c1fa37bd6dd9bb99fc3c18750c76a3d8c0a3b3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 Nov 2016 13:36:46 -0800 Subject: grunt --- dist/css/bootstrap.css | 76 ++++++++++++++++++++++++-------------------------- 1 file changed, 37 insertions(+), 39 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index b016b7904..3ab05ccf4 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -689,9 +689,9 @@ dl.row > dd + dt { background-color: #fff; border: 1px solid #ddd; border-radius: 0.25rem; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; max-width: 100%; height: auto; } @@ -2089,7 +2089,7 @@ pre code { } select.form-control:not([size]):not([multiple]) { - height: calc(2.5rem - 2px); + height: calc(2.25rem + 2px); } select.form-control:focus::-ms-value { @@ -2239,9 +2239,9 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .form-control-danger { padding-right: 2.25rem; background-repeat: no-repeat; - background-position: center right 0.625rem; - -webkit-background-size: 1.25rem 1.25rem; - background-size: 1.25rem 1.25rem; + background-position: center right 0.5625rem; + -webkit-background-size: 1.125rem 1.125rem; + background-size: 1.125rem 1.125rem; } .has-success .form-control-feedback, @@ -3010,9 +3010,9 @@ input[type="button"].btn-block { .fade { opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .15s linear; + -webkit-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } .fade.active { @@ -3039,15 +3039,9 @@ tbody.collapse.active { position: relative; height: 0; overflow: hidden; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height; - -o-transition-property: height; - transition-property: height; + -webkit-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; } .dropup, @@ -3619,7 +3613,7 @@ tbody.collapse.active { .custom-select { display: inline-block; max-width: 100%; - height: calc(2.5rem - 2px); + height: calc(2.25rem - 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; padding-right: 0.75rem \9; color: #464a4c; @@ -4251,8 +4245,8 @@ tbody.collapse.active { display: block; margin-bottom: 0.75rem; background-color: #fff; - border-radius: 0.25rem; border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; } .card-block { @@ -4421,6 +4415,10 @@ tbody.collapse.active { border-color: #d9534f; } +.card-inverse { + color: rgba(255, 255, 255, 0.65); +} + .card-inverse .card-header, .card-inverse .card-footer { background-color: transparent; @@ -5410,11 +5408,11 @@ button.close { } .modal.fade .modal-dialog { - -webkit-transition: -webkit-transform .3s ease-out; - transition: -webkit-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; - transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out; + -webkit-transition: -webkit-transform 0.3s ease-out; + transition: -webkit-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); @@ -5804,9 +5802,9 @@ button.close { .carousel-inner > .carousel-item { position: relative; display: none; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; + -webkit-transition: left 0.6s ease-in-out; + -o-transition: left 0.6s ease-in-out; + transition: left 0.6s ease-in-out; } .carousel-inner > .carousel-item > img, @@ -5816,11 +5814,11 @@ button.close { @media (-webkit-transform-3d) { .carousel-inner > .carousel-item { - -webkit-transition: -webkit-transform .6s ease-in-out; - transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; @@ -5845,11 +5843,11 @@ button.close { @supports ((-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0))) { .carousel-inner > .carousel-item { - -webkit-transition: -webkit-transform .6s ease-in-out; - transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; -- cgit v1.2.3 From 59dc3e174db4f22deb484352b17f8e1ac07172cc Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 29 Nov 2016 21:37:00 -0800 Subject: grunt --- dist/css/bootstrap.css | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3ab05ccf4..3a0ceee6d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -367,7 +367,6 @@ p { abbr[title], abbr[data-original-title] { cursor: help; - border-bottom: 1px dotted #636c72; } address { @@ -2213,23 +2212,17 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-check-inline { - position: relative; display: inline-block; - padding-left: 1.25rem; - margin-bottom: 0; +} + +.form-check-inline .form-check-label { vertical-align: middle; - cursor: pointer; } .form-check-inline + .form-check-inline { margin-left: .75rem; } -.form-check-inline.disabled { - color: #636c72; - cursor: not-allowed; -} - .form-control-feedback { margin-top: 0.25rem; } @@ -2248,7 +2241,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-success .form-control-label, .has-success .col-form-label, .has-success .form-check-label, -.has-success .form-check-inline, .has-success .custom-control { color: #5cb85c; } @@ -2271,7 +2263,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-warning .form-control-label, .has-warning .col-form-label, .has-warning .form-check-label, -.has-warning .form-check-inline, .has-warning .custom-control { color: #f0ad4e; } @@ -2294,7 +2285,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .has-danger .form-control-label, .has-danger .col-form-label, .has-danger .form-check-label, -.has-danger .form-check-inline, .has-danger .custom-control { color: #d9534f; } -- cgit v1.2.3 From cd76a6775de677210c25608f4d359ce429df995b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 7 Dec 2016 20:46:17 -0800 Subject: grunt --- dist/css/bootstrap.css | 245 +++++++++++++++++++------------------------------ 1 file changed, 93 insertions(+), 152 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3a0ceee6d..6cdd67c46 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -677,8 +677,7 @@ dl.row > dd + dt { clear: left; } -.img-fluid, .carousel-inner > .carousel-item > img, -.carousel-inner > .carousel-item > a > img { +.img-fluid { max-width: 100%; height: auto; } @@ -3513,13 +3512,10 @@ tbody.collapse.active { display: inline-block; min-height: 1.5rem; padding-left: 1.5rem; + margin-right: 1rem; cursor: pointer; } -.custom-control + .custom-control { - margin-left: 1rem; -} - .custom-control-input { position: absolute; z-index: -1; @@ -5789,21 +5785,14 @@ button.close { overflow: hidden; } -.carousel-inner > .carousel-item { +.carousel-item { position: relative; display: none; - -webkit-transition: left 0.6s ease-in-out; - -o-transition: left 0.6s ease-in-out; - transition: left 0.6s ease-in-out; -} - -.carousel-inner > .carousel-item > img, -.carousel-inner > .carousel-item > a > img { - line-height: 1; + width: 100%; } @media (-webkit-transform-3d) { - .carousel-inner > .carousel-item { + .carousel-item { -webkit-transition: -webkit-transform 0.6s ease-in-out; transition: -webkit-transform 0.6s ease-in-out; -o-transition: -o-transform 0.6s ease-in-out; @@ -5814,25 +5803,10 @@ button.close { -webkit-perspective: 1000px; perspective: 1000px; } - .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } } @supports ((-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0))) { - .carousel-inner > .carousel-item { + .carousel-item { -webkit-transition: -webkit-transform 0.6s ease-in-out; transition: -webkit-transform 0.6s ease-in-out; -o-transition: -o-transform 0.6s ease-in-out; @@ -5843,103 +5817,86 @@ button.close { -webkit-perspective: 1000px; perspective: 1000px; } - .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } } -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { display: block; } -.carousel-inner > .active { - left: 0; -} - -.carousel-inner > .next, -.carousel-inner > .prev { +.carousel-item-next, +.carousel-item-prev { position: absolute; top: 0; - width: 100%; -} - -.carousel-inner > .next { - left: 100%; -} - -.carousel-inner > .prev { - left: -100%; -} - -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; } -.carousel-inner > .active.left { - left: -100%; +@media (-webkit-transform-3d) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } } -.carousel-inner > .active.right { - left: 100%; +@supports ((-webkit-transform: translate3d(0, 0, 0)) or (transform: translate3d(0, 0, 0))) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } } -.carousel-control { +.carousel-control-prev, +.carousel-control-next { position: absolute; top: 0; bottom: 0; - left: 0; width: 15%; - font-size: 20px; color: #fff; text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); opacity: 0.5; } -.carousel-control.left { - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} - -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} - -.carousel-control:focus, .carousel-control:hover { +.carousel-control-prev:focus, .carousel-control-prev:hover, +.carousel-control-next:focus, +.carousel-control-next:hover { color: #fff; text-decoration: none; outline: 0; opacity: .9; } -.carousel-control .icon-prev, -.carousel-control .icon-next { +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { position: absolute; top: 50%; z-index: 5; @@ -5949,54 +5906,67 @@ button.close { margin-top: -10px; font-family: serif; line-height: 1; + background: transparent no-repeat center center; + -webkit-background-size: 100% 100%; + background-size: 100% 100%; } -.carousel-control .icon-prev { +.carousel-control-prev-icon { left: 50%; margin-left: -10px; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } -.carousel-control .icon-next { +.carousel-control-next-icon { right: 50%; margin-right: -10px; -} - -.carousel-control .icon-prev::before { - content: "\2039"; -} - -.carousel-control .icon-next::before { - content: "\203a"; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } .carousel-indicators { position: absolute; + right: 0; bottom: 10px; - left: 50%; + left: 0; z-index: 15; - width: 60%; padding-left: 0; - margin-left: -30%; + margin-right: 15%; + margin-left: 15%; text-align: center; list-style: none; } .carousel-indicators li { + position: relative; display: inline-block; - width: 10px; - height: 10px; - margin: 1px; + width: 30px; + height: 3px; text-indent: -999px; cursor: pointer; - background-color: transparent; - border: 1px solid #fff; - border-radius: 10px; + background-color: rgba(255, 255, 255, 0.5); +} + +.carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; } .carousel-indicators .active { - width: 12px; - height: 12px; - margin: 0; background-color: #fff; } @@ -6010,35 +5980,6 @@ button.close { padding-bottom: 20px; color: #fff; text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} - -.carousel-caption .btn { - text-shadow: none; -} - -@media (min-width: 576px) { - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .carousel-control .icon-prev { - margin-left: -15px; - } - .carousel-control .icon-next { - margin-right: -15px; - } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } } .align-baseline { -- cgit v1.2.3 From 14ce741fa039d37680e1b63caaaf76b9ab010cc4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 10 Dec 2016 17:03:28 -0800 Subject: grunt --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 6cdd67c46..ead266f04 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3589,6 +3589,7 @@ tbody.collapse.active { .custom-controls-stacked .custom-control { float: left; + margin-bottom: 0.25rem; clear: left; } -- cgit v1.2.3 From a8b3e09f22cab94d9c3646119154a224559aef74 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 19 Dec 2016 21:08:24 -0800 Subject: grunt --- dist/css/bootstrap.css | 72 +++++++++++++++++++++++++------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index ead266f04..6671f0546 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -342,7 +342,7 @@ html { } body { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1rem; font-weight: normal; line-height: 1.5; @@ -727,7 +727,7 @@ kbd { padding: 0.2rem 0.4rem; font-size: 90%; color: #fff; - background-color: #333; + background-color: #292b2c; border-radius: 0.2rem; } @@ -2053,27 +2053,27 @@ pre code { .form-control:focus { color: #464a4c; background-color: #fff; - border-color: #66afe9; + border-color: #5cb3fd; outline: none; } .form-control::-webkit-input-placeholder { - color: #999; + color: #636c72; opacity: 1; } .form-control::-moz-placeholder { - color: #999; + color: #636c72; opacity: 1; } .form-control:-ms-input-placeholder { - color: #999; + color: #636c72; opacity: 1; } .form-control::placeholder { - color: #999; + color: #636c72; opacity: 1; } @@ -3084,7 +3084,7 @@ tbody.collapse.active { height: 1px; margin: 0.5rem 0; overflow: hidden; - background-color: #e5e5e5; + background-color: #eceeef; } .dropdown-item { @@ -3524,26 +3524,26 @@ tbody.collapse.active { .custom-control-input:checked ~ .custom-control-indicator { color: #fff; - background-color: #0074d9; + background-color: #0275d8; } .custom-control-input:focus ~ .custom-control-indicator { - -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9; - box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9; + -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0275d8; + box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0275d8; } .custom-control-input:active ~ .custom-control-indicator { color: #fff; - background-color: #84c6ff; + background-color: #8fcafe; } .custom-control-input:disabled ~ .custom-control-indicator { cursor: not-allowed; - background-color: #eee; + background-color: #eceeef; } .custom-control-input:disabled ~ .custom-control-description { - color: #767676; + color: #636c72; cursor: not-allowed; } @@ -3575,7 +3575,7 @@ tbody.collapse.active { } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator { - background-color: #0074d9; + background-color: #0275d8; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } @@ -3616,7 +3616,7 @@ tbody.collapse.active { } .custom-select:focus { - border-color: #51a7e8; + border-color: #5cb3fd; outline: none; } @@ -3667,13 +3667,13 @@ tbody.collapse.active { height: 2.5rem; padding: 0.5rem 1rem; line-height: 1.5; - color: #555; + color: #464a4c; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #fff; - border: 1px solid #ddd; + border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0.25rem; } @@ -3691,9 +3691,9 @@ tbody.collapse.active { height: 2.5rem; padding: 0.5rem 1rem; line-height: 1.5; - color: #555; - background-color: #eee; - border: 1px solid #ddd; + color: #464a4c; + background-color: #eceeef; + border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0 0.25rem 0.25rem 0; } @@ -4881,7 +4881,7 @@ a.badge:focus, a.badge:hover { } .progress[value] { - background-color: #eee; + background-color: #eceeef; border: 0; -webkit-appearance: none; -moz-appearance: none; @@ -4890,37 +4890,37 @@ a.badge:focus, a.badge:hover { } .progress[value]::-ms-fill { - background-color: #0074d9; + background-color: #0275d8; border: 0; } .progress[value]::-moz-progress-bar { - background-color: #0074d9; + background-color: #0275d8; } .progress[value]::-webkit-progress-value { - background-color: #0074d9; + background-color: #0275d8; } .progress[value]::-webkit-progress-bar { - background-color: #eee; + background-color: #eceeef; } base::-moz-progress-bar, .progress[value] { - background-color: #eee; + background-color: #eceeef; } @media screen and (min-width: 0\0) { .progress { - background-color: #eee; + background-color: #eceeef; border-radius: 0.25rem; } .progress-bar { display: inline-block; height: 1rem; text-indent: -999rem; - background-color: #0074d9; + background-color: #0275d8; } } @@ -5167,16 +5167,16 @@ base::-moz-progress-bar, .list-group-item-action { width: 100%; - color: #555; + color: #464a4c; text-align: inherit; } .list-group-item-action .list-group-item-heading { - color: #333; + color: #292b2c; } .list-group-item-action:focus, .list-group-item-action:hover { - color: #555; + color: #464a4c; text-decoration: none; background-color: #f7f7f9; } @@ -5454,7 +5454,7 @@ button.close { .modal-header { padding: 15px; - border-bottom: 1px solid #e5e5e5; + border-bottom: 1px solid #f7f7f9; } .modal-header::after { @@ -5480,7 +5480,7 @@ button.close { .modal-footer { padding: 15px; text-align: right; - border-top: 1px solid #e5e5e5; + border-top: 1px solid #f7f7f9; } .modal-footer::after { @@ -5517,7 +5517,7 @@ button.close { position: absolute; z-index: 1070; display: block; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; @@ -5621,7 +5621,7 @@ button.close { display: block; max-width: 276px; padding: 1px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; -- cgit v1.2.3 From ab38529dcc533831341746243ef9f46ddff2171f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 19 Dec 2016 21:48:24 -0800 Subject: grunt --- dist/css/bootstrap.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 6671f0546..6188c6301 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3004,7 +3004,7 @@ input[type="button"].btn-block { transition: opacity 0.15s linear; } -.fade.active { +.fade.show { opacity: 1; } @@ -3012,15 +3012,15 @@ input[type="button"].btn-block { display: none; } -.collapse.active { +.collapse.show { display: block; } -tr.collapse.active { +tr.collapse.show { display: table-row; } -tbody.collapse.active { +tbody.collapse.show { display: table-row-group; } @@ -3125,11 +3125,11 @@ tbody.collapse.active { filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; } -.active > .dropdown-menu { +.show > .dropdown-menu { display: block; } -.active > a { +.show > a { outline: 0; } @@ -5406,7 +5406,7 @@ button.close { transform: translate(0, -25%); } -.modal.active .modal-dialog { +.modal.show .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); @@ -5448,7 +5448,7 @@ button.close { opacity: 0; } -.modal-backdrop.active { +.modal-backdrop.show { opacity: 0.5; } @@ -5536,7 +5536,7 @@ button.close { opacity: 0; } -.tooltip.active { +.tooltip.show { opacity: 0.9; } -- cgit v1.2.3 From a6a87b0d9d0622333f266abc6100179abf66e09c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 20 Dec 2016 14:53:50 -0800 Subject: grunt --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 6188c6301..61e1ba2e4 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2318,6 +2318,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .form-control-static { display: inline-block; + margin-bottom: 0; } .form-inline .input-group { width: auto; -- cgit v1.2.3 From e111e2e58ec35dccb734764606637c4ce42e66e9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 21 Dec 2016 20:33:54 -0800 Subject: grunt --- dist/css/bootstrap.css | 1232 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 1016 insertions(+), 216 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 61e1ba2e4..192cd5382 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -673,10 +673,6 @@ mark, content: "\00A0 \2014"; } -dl.row > dd + dt { - clear: left; -} - .img-fluid { max-width: 100%; height: auto; @@ -723,6 +719,12 @@ code { border-radius: 0.25rem; } +a > code { + padding: 0; + color: inherit; + background-color: inherit; +} + kbd { padding: 0.2rem 0.4rem; font-size: 90%; @@ -765,12 +767,6 @@ pre code { padding-left: 15px; } -.container::after { - display: block; - content: ""; - clear: both; -} - @media (min-width: 576px) { .container { padding-right: 15px; @@ -834,12 +830,6 @@ pre code { padding-left: 15px; } -.container-fluid::after { - display: block; - content: ""; - clear: both; -} - @media (min-width: 576px) { .container-fluid { padding-right: 15px; @@ -869,16 +859,17 @@ pre code { } .row { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } -.row::after { - display: block; - content: ""; - clear: both; -} - @media (min-width: 576px) { .row { margin-right: -15px; @@ -918,99 +909,155 @@ pre code { padding-left: 0; } -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl { position: relative; + width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px; } @media (min-width: 576px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl { padding-right: 15px; padding-left: 15px; } } @media (min-width: 768px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl { padding-right: 15px; padding-left: 15px; } } @media (min-width: 992px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl { padding-right: 15px; padding-left: 15px; } } @media (min-width: 1200px) { - .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 { + .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl { padding-right: 15px; padding-left: 15px; } } +.col { + -webkit-flex-basis: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; +} + .col-1 { - float: left; - width: 8.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 8.333333%; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; } .col-2 { - float: left; - width: 16.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 16.666667%; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; } .col-3 { - float: left; - width: 25%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } .col-4 { - float: left; - width: 33.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 33.333333%; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; } .col-5 { - float: left; - width: 41.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 41.666667%; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; } .col-6 { - float: left; - width: 50%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } .col-7 { - float: left; - width: 58.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 58.333333%; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; } .col-8 { - float: left; - width: 66.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 66.666667%; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; } .col-9 { - float: left; - width: 75%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } .col-10 { - float: left; - width: 83.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 83.333333%; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; } .col-11 { - float: left; - width: 91.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 91.666667%; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; } .col-12 { - float: left; - width: 100%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 100%; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } .pull-0 { @@ -1162,53 +1209,106 @@ pre code { } @media (min-width: 576px) { + .col-sm { + -webkit-flex-basis: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } .col-sm-1 { - float: left; - width: 8.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 8.333333%; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; } .col-sm-2 { - float: left; - width: 16.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 16.666667%; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; } .col-sm-3 { - float: left; - width: 25%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } .col-sm-4 { - float: left; - width: 33.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 33.333333%; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; } .col-sm-5 { - float: left; - width: 41.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 41.666667%; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; } .col-sm-6 { - float: left; - width: 50%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } .col-sm-7 { - float: left; - width: 58.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 58.333333%; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; } .col-sm-8 { - float: left; - width: 66.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 66.666667%; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; } .col-sm-9 { - float: left; - width: 75%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } .col-sm-10 { - float: left; - width: 83.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 83.333333%; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; } .col-sm-11 { - float: left; - width: 91.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 91.666667%; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; } .col-sm-12 { - float: left; - width: 100%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 100%; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } .pull-sm-0 { right: auto; @@ -1327,53 +1427,106 @@ pre code { } @media (min-width: 768px) { + .col-md { + -webkit-flex-basis: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } .col-md-1 { - float: left; - width: 8.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 8.333333%; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; } .col-md-2 { - float: left; - width: 16.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 16.666667%; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; } .col-md-3 { - float: left; - width: 25%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } .col-md-4 { - float: left; - width: 33.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 33.333333%; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; } .col-md-5 { - float: left; - width: 41.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 41.666667%; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; } .col-md-6 { - float: left; - width: 50%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } .col-md-7 { - float: left; - width: 58.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 58.333333%; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; } .col-md-8 { - float: left; - width: 66.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 66.666667%; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; } .col-md-9 { - float: left; - width: 75%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } .col-md-10 { - float: left; - width: 83.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 83.333333%; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; } .col-md-11 { - float: left; - width: 91.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 91.666667%; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; } .col-md-12 { - float: left; - width: 100%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 100%; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } .pull-md-0 { right: auto; @@ -1492,53 +1645,106 @@ pre code { } @media (min-width: 992px) { + .col-lg { + -webkit-flex-basis: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } .col-lg-1 { - float: left; - width: 8.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 8.333333%; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; } .col-lg-2 { - float: left; - width: 16.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 16.666667%; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; } .col-lg-3 { - float: left; - width: 25%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } .col-lg-4 { - float: left; - width: 33.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 33.333333%; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; } .col-lg-5 { - float: left; - width: 41.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 41.666667%; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; } .col-lg-6 { - float: left; - width: 50%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } .col-lg-7 { - float: left; - width: 58.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 58.333333%; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; } .col-lg-8 { - float: left; - width: 66.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 66.666667%; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; } .col-lg-9 { - float: left; - width: 75%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } .col-lg-10 { - float: left; - width: 83.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 83.333333%; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; } .col-lg-11 { - float: left; - width: 91.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 91.666667%; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; } .col-lg-12 { - float: left; - width: 100%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 100%; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } .pull-lg-0 { right: auto; @@ -1657,53 +1863,106 @@ pre code { } @media (min-width: 1200px) { + .col-xl { + -webkit-flex-basis: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + } .col-xl-1 { - float: left; - width: 8.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 8.333333%; + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; } .col-xl-2 { - float: left; - width: 16.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 16.666667%; + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; } .col-xl-3 { - float: left; - width: 25%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 25%; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } .col-xl-4 { - float: left; - width: 33.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 33.333333%; + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; } .col-xl-5 { - float: left; - width: 41.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 41.666667%; + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; } .col-xl-6 { - float: left; - width: 50%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 50%; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } .col-xl-7 { - float: left; - width: 58.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 58.333333%; + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; } .col-xl-8 { - float: left; - width: 66.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 66.666667%; + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; } .col-xl-9 { - float: left; - width: 75%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 75%; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } .col-xl-10 { - float: left; - width: 83.333333%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 83.333333%; + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; } .col-xl-11 { - float: left; - width: 91.666667%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 91.666667%; + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; } .col-xl-12 { - float: left; - width: 100%; + -webkit-box-flex: 0; + -webkit-flex: 0 0 100%; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } .pull-xl-0 { right: auto; @@ -2302,13 +2561,48 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); } +.form-inline { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + 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: inline-block; - vertical-align: middle; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; margin-bottom: 0; } .form-inline .form-control { @@ -2322,24 +2616,24 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .input-group { width: auto; - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; } .form-inline .form-control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .form-check { - display: inline-block; - vertical-align: middle; + 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; @@ -2352,12 +2646,24 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for margin-left: 0; } .form-inline .custom-control { + 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; padding-left: 0; - vertical-align: middle; } .form-inline .custom-control-indicator { position: static; display: inline-block; + margin-right: .25rem; vertical-align: text-bottom; } .form-inline .has-feedback .form-control-feedback { @@ -3372,16 +3678,21 @@ tbody.collapse.show { .input-group { position: relative; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; width: 100%; - display: table; - border-collapse: separate; } .input-group .form-control { position: relative; z-index: 2; - float: left; - width: 100%; + -webkit-box-flex: 1; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; margin-bottom: 0; } @@ -3392,7 +3703,19 @@ tbody.collapse.show { .input-group-addon, .input-group-btn, .input-group .form-control { - display: table-cell; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; } .input-group-addon:not(:first-child):not(:last-child), @@ -3403,7 +3726,6 @@ tbody.collapse.show { .input-group-addon, .input-group-btn { - width: 1%; white-space: nowrap; vertical-align: middle; } @@ -3480,6 +3802,10 @@ tbody.collapse.show { .input-group-btn > .btn { position: relative; + -webkit-box-flex: 1; + -webkit-flex: 1 1 0%; + -ms-flex: 1 1 0%; + flex: 1 1 0%; } .input-group-btn > .btn + .btn { @@ -3834,6 +4160,21 @@ tbody.collapse.show { display: block; } +.nav-justified { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} + +.nav-justified .nav-item { + -webkit-box-flex: 1; + -webkit-flex: 1 1 0%; + -ms-flex: 1 1 0%; + flex: 1 1 0%; + text-align: center; +} + .navbar { position: relative; padding: 0.5rem 1rem; @@ -4241,12 +4582,6 @@ tbody.collapse.show { padding: 1.25rem; } -.card-block::after { - display: block; - content: ""; - clear: both; -} - .card-title { margin-bottom: 0.75rem; } @@ -4285,12 +4620,6 @@ tbody.collapse.show { border-bottom: 1px solid rgba(0, 0, 0, 0.125); } -.card-header::after { - display: block; - content: ""; - clear: both; -} - .card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } @@ -4301,12 +4630,6 @@ tbody.collapse.show { border-top: 1px solid rgba(0, 0, 0, 0.125); } -.card-footer::after { - display: block; - content: ""; - clear: both; -} - .card-footer:last-child { border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } @@ -4462,32 +4785,58 @@ tbody.collapse.show { @media (min-width: 576px) { .card-deck { - display: table; - width: 100%; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -0.625rem; margin-bottom: 0.75rem; - table-layout: fixed; - border-spacing: 1.25rem 0; + margin-left: -0.625rem; } .card-deck .card { - display: table-cell; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -webkit-flex: 1 0 0%; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 0.625rem; margin-bottom: 0; - vertical-align: top; + margin-left: 0.625rem; } - .card-deck-wrapper { - margin-right: -1.25rem; - margin-left: -1.25rem; + .card-deck .card-block { + -webkit-box-flex: 1; + -webkit-flex-grow: 1; + -ms-flex-positive: 1; + flex-grow: 1; } } @media (min-width: 576px) { .card-group { - display: table; - width: 100%; - table-layout: fixed; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; } .card-group .card { - display: table-cell; - vertical-align: top; + -webkit-box-flex: 1; + -webkit-flex: 1 0 0%; + -ms-flex: 1 0 0%; + flex: 1 0 0%; } .card-group .card + .card { margin-left: 0; @@ -5041,28 +5390,31 @@ base::-moz-progress-bar, } } -.media, -.media-body { - overflow: hidden; -} - -.media-body { - width: 10000px; +.media { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } -.media-left, -.media-right, .media-body { - display: table-cell; - vertical-align: top; + -webkit-box-flex: 1; + -webkit-flex: 1 1 0%; + -ms-flex: 1 1 0%; + flex: 1 1 0%; } .media-middle { - vertical-align: middle; + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; } .media-bottom { - vertical-align: bottom; + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; } .media-object { @@ -5092,13 +5444,32 @@ base::-moz-progress-bar, } .list-group { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; padding-left: 0; margin-bottom: 0; } .list-group-item { - display: block; position: relative; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; @@ -5402,14 +5773,12 @@ button.close { transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out; -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.show .modal-dialog { -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } @@ -6257,6 +6626,437 @@ a.bg-inverse:focus, a.bg-inverse:hover { } } +.flex-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; +} + +.flex-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; +} + +.flex-unordered { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; +} + +.flex-items-top { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; +} + +.flex-items-middle { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} + +.flex-items-bottom { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; +} + +.flex-top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; +} + +.flex-middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; +} + +.flex-bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; +} + +.flex-items-left { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.flex-items-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; +} + +.flex-items-right { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; +} + +.flex-items-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; +} + +.flex-items-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; +} + +@media (min-width: 576px) { + .flex-sm-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + } + .flex-sm-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + } + .flex-sm-unordered { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + } + .flex-items-sm-top { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + } + .flex-items-sm-middle { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .flex-items-sm-bottom { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; + } + .flex-sm-top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; + } + .flex-sm-middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + } + .flex-sm-bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; + } + .flex-items-sm-left { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .flex-items-sm-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + } + .flex-items-sm-right { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + } + .flex-items-sm-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; + } + .flex-items-sm-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + } +} + +@media (min-width: 768px) { + .flex-md-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + } + .flex-md-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + } + .flex-md-unordered { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + } + .flex-items-md-top { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + } + .flex-items-md-middle { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .flex-items-md-bottom { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; + } + .flex-md-top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; + } + .flex-md-middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + } + .flex-md-bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; + } + .flex-items-md-left { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .flex-items-md-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + } + .flex-items-md-right { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + } + .flex-items-md-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; + } + .flex-items-md-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + } +} + +@media (min-width: 992px) { + .flex-lg-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + } + .flex-lg-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + } + .flex-lg-unordered { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + } + .flex-items-lg-top { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + } + .flex-items-lg-middle { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .flex-items-lg-bottom { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; + } + .flex-lg-top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; + } + .flex-lg-middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + } + .flex-lg-bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; + } + .flex-items-lg-left { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .flex-items-lg-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + } + .flex-items-lg-right { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + } + .flex-items-lg-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; + } + .flex-items-lg-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + } +} + +@media (min-width: 1200px) { + .flex-xl-first { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; + } + .flex-xl-last { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; + } + .flex-xl-unordered { + -webkit-box-ordinal-group: 1; + -webkit-order: 0; + -ms-flex-order: 0; + order: 0; + } + .flex-items-xl-top { + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + } + .flex-items-xl-middle { + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .flex-items-xl-bottom { + -webkit-box-align: end; + -webkit-align-items: flex-end; + -ms-flex-align: end; + align-items: flex-end; + } + .flex-xl-top { + -webkit-align-self: flex-start; + -ms-flex-item-align: start; + align-self: flex-start; + } + .flex-xl-middle { + -webkit-align-self: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; + } + .flex-xl-bottom { + -webkit-align-self: flex-end; + -ms-flex-item-align: end; + align-self: flex-end; + } + .flex-items-xl-left { + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; + } + .flex-items-xl-center { + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + } + .flex-items-xl-right { + -webkit-box-pack: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; + } + .flex-items-xl-around { + -webkit-justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; + } + .flex-items-xl-between { + -webkit-box-pack: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; + } +} + .float-left { float: left !important; } -- cgit v1.2.3 From df0842d1c2501b31f148eda3d8bb3373ed5c1648 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 Dec 2016 13:42:01 -0800 Subject: grunt --- dist/css/bootstrap.css | 59 -------------------------------------------------- 1 file changed, 59 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 192cd5382..e2f385cbe 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2236,7 +2236,6 @@ pre code { .table-responsive { display: block; width: 100%; - min-height: 0%; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; } @@ -3429,7 +3428,6 @@ tbody.collapse.show { cursor: not-allowed; background-color: transparent; background-image: none; - filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; } .show > .dropdown-menu { @@ -3929,11 +3927,9 @@ tbody.collapse.show { max-width: 100%; height: calc(2.25rem - 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; - padding-right: 0.75rem \9; color: #464a4c; 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-image: none \9; -webkit-background-size: 8px 10px; background-size: 8px 10px; border: 1px solid rgba(0, 0, 0, 0.15); @@ -5261,19 +5257,6 @@ base::-moz-progress-bar, background-color: #eceeef; } -@media screen and (min-width: 0\0) { - .progress { - background-color: #eceeef; - border-radius: 0.25rem; - } - .progress-bar { - display: inline-block; - height: 1rem; - text-indent: -999rem; - background-color: #0275d8; - } -} - .progress-striped[value]::-webkit-progress-value { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); @@ -5291,16 +5274,6 @@ base::-moz-progress-bar, background-size: 1rem 1rem; } -@media screen and (min-width: 0\0) { - .progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - -webkit-background-size: 1rem 1rem; - background-size: 1rem 1rem; - } -} - .progress-animated[value]::-webkit-progress-value { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; @@ -5310,14 +5283,6 @@ base::-moz-progress-bar, animation: progress-bar-stripes 2s linear infinite; } -@media screen and (min-width: 0\0) { - .progress-animated .progress-bar-striped { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; - } -} - .progress-success[value]::-webkit-progress-value { background-color: #5cb85c; } @@ -5330,12 +5295,6 @@ base::-moz-progress-bar, background-color: #5cb85c; } -@media screen and (min-width: 0\0) { - .progress-success .progress-bar { - background-color: #5cb85c; - } -} - .progress-info[value]::-webkit-progress-value { background-color: #5bc0de; } @@ -5348,12 +5307,6 @@ base::-moz-progress-bar, background-color: #5bc0de; } -@media screen and (min-width: 0\0) { - .progress-info .progress-bar { - background-color: #5bc0de; - } -} - .progress-warning[value]::-webkit-progress-value { background-color: #f0ad4e; } @@ -5366,12 +5319,6 @@ base::-moz-progress-bar, background-color: #f0ad4e; } -@media screen and (min-width: 0\0) { - .progress-warning .progress-bar { - background-color: #f0ad4e; - } -} - .progress-danger[value]::-webkit-progress-value { background-color: #d9534f; } @@ -5384,12 +5331,6 @@ base::-moz-progress-bar, background-color: #d9534f; } -@media screen and (min-width: 0\0) { - .progress-danger .progress-bar { - background-color: #d9534f; - } -} - .media { display: -webkit-box; display: -webkit-flex; -- cgit v1.2.3 From 0ec049d222c1d8c8e33bf4392aa29626c8a27200 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 Dec 2016 13:52:33 -0800 Subject: grunt --- dist/css/bootstrap.css | 452 ++++++++++++++++++++++++++++++------------------- 1 file changed, 279 insertions(+), 173 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index e2f385cbe..f779e7952 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4176,26 +4176,14 @@ tbody.collapse.show { padding: 0.5rem 1rem; } -.navbar::after { - display: block; - content: ""; - clear: both; -} - -@media (min-width: 576px) { - .navbar { - border-radius: 0.25rem; - } -} - -.navbar-full { - z-index: 1000; +.navbar-toggler-left { + position: absolute; + left: 1rem; } -@media (min-width: 576px) { - .navbar-full { - border-radius: 0; - } +.navbar-toggler-right { + position: absolute; + right: 1rem; } .navbar-fixed-top, @@ -4206,13 +4194,6 @@ tbody.collapse.show { z-index: 1030; } -@media (min-width: 576px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} - .navbar-fixed-top { top: 0; } @@ -4226,22 +4207,16 @@ tbody.collapse.show { position: sticky; top: 0; z-index: 1030; - width: 100%; -} - -@media (min-width: 576px) { - .navbar-sticky-top { - border-radius: 0; - } } .navbar-brand { - float: left; - padding-top: 0.25rem; - padding-bottom: 0.25rem; + display: inline-block; + padding-top: .25rem; + padding-bottom: .25rem; margin-right: 1rem; font-size: 1.25rem; line-height: inherit; + white-space: nowrap; } .navbar-brand:focus, .navbar-brand:hover { @@ -4269,14 +4244,10 @@ tbody.collapse.show { } .navbar-toggler { - width: 2.5em; - height: 2em; - padding: 0.5rem 0.75rem; + padding: 0.25rem 0.75rem; font-size: 1.25rem; line-height: 1; - background: transparent no-repeat center center; - -webkit-background-size: 24px 24px; - background-size: 24px 24px; + background: transparent; border: 1px solid transparent; border-radius: 0.25rem; } @@ -4285,8 +4256,22 @@ tbody.collapse.show { text-decoration: none; } -.navbar-nav .nav-item { - float: left; +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + -webkit-background-size: 100% 100%; + background-size: 100% 100%; +} + +.navbar-nav { + -webkit-box-flex: 10; + -webkit-flex-grow: 10; + -ms-flex-positive: 10; + flex-grow: 10; } .navbar-nav .nav-link { @@ -4295,14 +4280,6 @@ tbody.collapse.show { padding-bottom: .425rem; } -.navbar-nav .nav-link + .nav-link { - margin-left: 1rem; -} - -.navbar-nav .nav-item + .nav-item { - margin-left: 1rem; -} - .navbar-light .navbar-brand, .navbar-light .navbar-toggler { color: rgba(0, 0, 0, 0.9); @@ -4340,10 +4317,13 @@ tbody.collapse.show { } .navbar-light .navbar-toggler { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); border-color: rgba(0, 0, 0, 0.1); } +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +} + .navbar-light .navbar-divider { background-color: rgba(0, 0, 0, 0.075); } @@ -4352,217 +4332,343 @@ tbody.collapse.show { color: rgba(0, 0, 0, 0.5); } -.navbar-dark .navbar-brand, -.navbar-dark .navbar-toggler { +.navbar-inverse .navbar-brand, +.navbar-inverse .navbar-toggler { color: white; } -.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover, -.navbar-dark .navbar-toggler:focus, -.navbar-dark .navbar-toggler:hover { +.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-toggler:focus, +.navbar-inverse .navbar-toggler:hover { color: white; } -.navbar-dark .navbar-nav .nav-link { +.navbar-inverse .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.5); } -.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { +.navbar-inverse .navbar-nav .nav-link:focus, .navbar-inverse .navbar-nav .nav-link:hover { color: rgba(255, 255, 255, 0.75); } -.navbar-dark .navbar-nav .nav-link.disabled { +.navbar-inverse .navbar-nav .nav-link.disabled { color: rgba(255, 255, 255, 0.25); } -.navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link:focus, -.navbar-dark .navbar-nav .active > .nav-link:hover, -.navbar-dark .navbar-nav .nav-link.open, -.navbar-dark .navbar-nav .nav-link.open:focus, -.navbar-dark .navbar-nav .nav-link.open:hover, -.navbar-dark .navbar-nav .nav-link.active, -.navbar-dark .navbar-nav .nav-link.active:focus, -.navbar-dark .navbar-nav .nav-link.active:hover { +.navbar-inverse .navbar-nav .open > .nav-link, .navbar-inverse .navbar-nav .open > .nav-link:focus, .navbar-inverse .navbar-nav .open > .nav-link:hover, +.navbar-inverse .navbar-nav .active > .nav-link, +.navbar-inverse .navbar-nav .active > .nav-link:focus, +.navbar-inverse .navbar-nav .active > .nav-link:hover, +.navbar-inverse .navbar-nav .nav-link.open, +.navbar-inverse .navbar-nav .nav-link.open:focus, +.navbar-inverse .navbar-nav .nav-link.open:hover, +.navbar-inverse .navbar-nav .nav-link.active, +.navbar-inverse .navbar-nav .nav-link.active:focus, +.navbar-inverse .navbar-nav .nav-link.active:hover { color: white; } -.navbar-dark .navbar-toggler { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +.navbar-inverse .navbar-toggler { border-color: rgba(255, 255, 255, 0.1); } -.navbar-dark .navbar-divider { - background-color: rgba(255, 255, 255, 0.075); +.navbar-inverse .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); } -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); +.navbar-inverse .navbar-divider { + background-color: rgba(255, 255, 255, 0.075); } -.navbar-toggleable::after { - display: block; - content: ""; - clear: both; +.navbar-inverse .navbar-text { + color: rgba(255, 255, 255, 0.5); } @media (max-width: 575px) { - .navbar-toggleable .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } .navbar-toggleable .navbar-nav .dropdown-menu { position: static; float: none; } - .navbar-toggleable .navbar-nav .nav-item { - float: none; - margin-left: 0; + .navbar-toggleable > .container { + padding-right: 0; + padding-left: 0; } } @media (min-width: 576px) { .navbar-toggleable { - display: block !important; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable > .container { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable .navbar-collapse { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + width: 100%; + } + .navbar-toggleable .nav-item { + display: inline-block; + } + .navbar-toggleable .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-toggleable .navbar-toggler { + display: none; } -} - -.navbar-toggleable-sm::after { - display: block; - content: ""; - clear: both; } @media (max-width: 767px) { - .navbar-toggleable-sm .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-sm .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } .navbar-toggleable-sm .navbar-nav .dropdown-menu { position: static; float: none; } - .navbar-toggleable-sm .navbar-nav .nav-item { - float: none; - margin-left: 0; + .navbar-toggleable-sm > .container { + padding-right: 0; + padding-left: 0; } } @media (min-width: 768px) { .navbar-toggleable-sm { - display: block !important; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-sm > .container { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-sm .navbar-collapse { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + width: 100%; + } + .navbar-toggleable-sm .nav-item { + display: inline-block; + } + .navbar-toggleable-sm .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-toggleable-sm .navbar-toggler { + display: none; } -} - -.navbar-toggleable-md::after { - display: block; - content: ""; - clear: both; } @media (max-width: 991px) { - .navbar-toggleable-md .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-md .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } .navbar-toggleable-md .navbar-nav .dropdown-menu { position: static; float: none; } - .navbar-toggleable-md .navbar-nav .nav-item { - float: none; - margin-left: 0; + .navbar-toggleable-md > .container { + padding-right: 0; + padding-left: 0; } } @media (min-width: 992px) { .navbar-toggleable-md { - display: block !important; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-md > .container { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-md .navbar-collapse { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + width: 100%; + } + .navbar-toggleable-md .nav-item { + display: inline-block; + } + .navbar-toggleable-md .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-toggleable-md .navbar-toggler { + display: none; } -} - -.navbar-toggleable-lg::after { - display: block; - content: ""; - clear: both; } @media (max-width: 1199px) { - .navbar-toggleable-lg .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; - } - .navbar-toggleable-lg .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; - } .navbar-toggleable-lg .navbar-nav .dropdown-menu { position: static; float: none; } - .navbar-toggleable-lg .navbar-nav .nav-item { - float: none; - margin-left: 0; + .navbar-toggleable-lg > .container { + padding-right: 0; + padding-left: 0; } } @media (min-width: 1200px) { .navbar-toggleable-lg { - display: block !important; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-lg > .container { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + } + .navbar-toggleable-lg .navbar-collapse { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + width: 100%; + } + .navbar-toggleable-lg .nav-item { + display: inline-block; + } + .navbar-toggleable-lg .nav-link { + padding-right: .5rem; + padding-left: .5rem; + } + .navbar-toggleable-lg .navbar-toggler { + display: none; } } .navbar-toggleable-xl { - display: block !important; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; } -.navbar-toggleable-xl::after { - display: block; - content: ""; - clear: both; +.navbar-toggleable-xl .navbar-nav .dropdown-menu { + position: static; + float: none; } -.navbar-toggleable-xl .navbar-brand { - display: block; - float: none; - margin-top: .5rem; - margin-right: 0; +.navbar-toggleable-xl > .container { + padding-right: 0; + padding-left: 0; } -.navbar-toggleable-xl .navbar-nav { - margin-top: .5rem; - margin-bottom: .5rem; +.navbar-toggleable-xl > .container { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; } -.navbar-toggleable-xl .navbar-nav .dropdown-menu { - position: static; - float: none; +.navbar-toggleable-xl .navbar-collapse { + display: -webkit-box !important; + display: -webkit-flex !important; + display: -ms-flexbox !important; + display: flex !important; + width: 100%; } -.navbar-toggleable-xl .navbar-nav .nav-item { - float: none; - margin-left: 0; +.navbar-toggleable-xl .nav-item { + display: inline-block; +} + +.navbar-toggleable-xl .nav-link { + padding-right: .5rem; + padding-left: .5rem; +} + +.navbar-toggleable-xl .navbar-toggler { + display: none; } .card { -- cgit v1.2.3 From 5b2d9f95d583d781bad1644b014b7eed298714a1 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 Dec 2016 21:19:12 -0800 Subject: grunt --- dist/css/bootstrap.css | 69 ++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 55 insertions(+), 14 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index f779e7952..313bb50cf 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6240,7 +6240,10 @@ button.close { .carousel-item.active, .carousel-item-next, .carousel-item-prev { - display: block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } .carousel-item-next, @@ -6290,6 +6293,18 @@ button.close { position: absolute; top: 0; bottom: 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; width: 15%; color: #fff; text-align: center; @@ -6315,29 +6330,19 @@ button.close { .carousel-control-prev-icon, .carousel-control-next-icon { - position: absolute; - top: 50%; - z-index: 5; display: inline-block; width: 20px; height: 20px; - margin-top: -10px; - font-family: serif; - line-height: 1; background: transparent no-repeat center center; -webkit-background-size: 100% 100%; background-size: 100% 100%; } .carousel-control-prev-icon { - left: 50%; - margin-left: -10px; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } .carousel-control-next-icon { - right: 50%; - margin-right: -10px; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } @@ -6347,18 +6352,30 @@ button.close { bottom: 10px; left: 0; z-index: 15; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; - text-align: center; list-style: none; } .carousel-indicators li { position: relative; - display: inline-block; - width: 30px; + -webkit-box-flex: 1; + -webkit-flex: 1 0 auto; + -ms-flex: 1 0 auto; + flex: 1 0 auto; + max-width: 30px; height: 3px; + margin-right: 3px; + margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgba(255, 255, 255, 0.5); @@ -7184,10 +7201,34 @@ a.bg-inverse:focus, a.bg-inverse:hover { clip: auto; } +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + .w-100 { width: 100% !important; } +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + .h-100 { height: 100% !important; } -- cgit v1.2.3 From cd18ee8af693755798eb9d20dfc82a350996c04b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 24 Dec 2016 14:29:41 -0800 Subject: grunt --- dist/css/bootstrap.css | 1217 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 804 insertions(+), 413 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 313bb50cf..534d22572 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3925,8 +3925,9 @@ tbody.collapse.show { .custom-select { display: inline-block; max-width: 100%; - height: calc(2.25rem - 2px); + height: calc(2.25rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.25; color: #464a4c; 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; @@ -4025,13 +4026,18 @@ tbody.collapse.show { } .nav { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; padding-left: 0; margin-bottom: 0; list-style: none; } .nav-link { - display: inline-block; + display: block; + padding: 0.5em 1em; } .nav-link:focus, .nav-link:hover { @@ -4048,37 +4054,15 @@ tbody.collapse.show { background-color: transparent; } -.nav-inline .nav-item { - display: inline-block; -} - -.nav-inline .nav-item + .nav-item, -.nav-inline .nav-link + .nav-link { - margin-left: 1rem; -} - .nav-tabs { border-bottom: 1px solid #ddd; } -.nav-tabs::after { - display: block; - content: ""; - clear: both; -} - .nav-tabs .nav-item { - float: left; margin-bottom: -1px; } -.nav-tabs .nav-item + .nav-item { - margin-left: 0.2rem; -} - .nav-tabs .nav-link { - display: block; - padding: 0.5em 1em; border: 1px solid transparent; border-top-right-radius: 0.25rem; border-top-left-radius: 0.25rem; @@ -4109,23 +4093,7 @@ tbody.collapse.show { border-top-left-radius: 0; } -.nav-pills::after { - display: block; - content: ""; - clear: both; -} - -.nav-pills .nav-item { - float: left; -} - -.nav-pills .nav-item + .nav-item { - margin-left: 0.2rem; -} - .nav-pills .nav-link { - display: block; - padding: 0.5em 1em; border-radius: 0.25rem; } @@ -4138,14 +4106,20 @@ tbody.collapse.show { background-color: #0275d8; } -.nav-stacked .nav-item { - display: block; - float: none; +.nav-fill .nav-item { + -webkit-box-flex: 1; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; } -.nav-stacked .nav-item + .nav-item { - margin-top: 0.2rem; - margin-left: 0; +.nav-justified .nav-item { + -webkit-box-flex: 1; + -webkit-flex: 1 1 100%; + -ms-flex: 1 1 100%; + flex: 1 1 100%; + text-align: center; } .tab-content > .tab-pane { @@ -4156,21 +4130,6 @@ tbody.collapse.show { display: block; } -.nav-justified { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -.nav-justified .nav-item { - -webkit-box-flex: 1; - -webkit-flex: 1 1 0%; - -ms-flex: 1 1 0%; - flex: 1 1 0%; - text-align: center; -} - .navbar { position: relative; padding: 0.5rem 1rem; @@ -4673,14 +4632,25 @@ tbody.collapse.show { .card { position: relative; - display: block; - margin-bottom: 0.75rem; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem; } .card-block { + -webkit-box-flex: 1; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; padding: 1.25rem; } @@ -4894,9 +4864,6 @@ tbody.collapse.show { -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap; - margin-right: -0.625rem; - margin-bottom: 0.75rem; - margin-left: -0.625rem; } .card-deck .card { display: -webkit-box; @@ -4912,15 +4879,12 @@ tbody.collapse.show { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; - margin-right: 0.625rem; - margin-bottom: 0; - margin-left: 0.625rem; } - .card-deck .card-block { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; + .card-deck .card:not(:first-child) { + margin-left: 15px; + } + .card-deck .card:not(:last-child) { + margin-right: 15px; } } @@ -4985,6 +4949,7 @@ tbody.collapse.show { .card-columns .card { display: inline-block; width: 100%; + margin-bottom: 0.75rem; } } @@ -5442,6 +5407,10 @@ base::-moz-progress-bar, display: -webkit-flex; display: -ms-flexbox; display: flex; + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; } .media-body { @@ -5451,45 +5420,6 @@ base::-moz-progress-bar, flex: 1 1 0%; } -.media-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; -} - -.media-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; -} - -.media-object { - display: block; -} - -.media-object.img-thumbnail { - max-width: none; -} - -.media-right { - padding-left: 10px; -} - -.media-left { - padding-right: 10px; -} - -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.media-list { - padding-left: 0; - list-style: none; -} - .list-group { display: -webkit-box; display: -webkit-flex; @@ -6582,6 +6512,13 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: flex !important; } +.d-inline-flex { + display: -webkit-inline-box !important; + display: -webkit-inline-flex !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + @media (min-width: 576px) { .d-sm-none { display: none !important; @@ -6607,6 +6544,12 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: -ms-flexbox !important; display: flex !important; } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -webkit-inline-flex !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } } @media (min-width: 768px) { @@ -6634,6 +6577,12 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: -ms-flexbox !important; display: flex !important; } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -webkit-inline-flex !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } } @media (min-width: 992px) { @@ -6661,6 +6610,12 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: -ms-flexbox !important; display: flex !important; } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -webkit-inline-flex !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } } @media (min-width: 1200px) { @@ -6688,6 +6643,12 @@ a.bg-inverse:focus, a.bg-inverse:hover { display: -ms-flexbox !important; display: flex !important; } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -webkit-inline-flex !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } } .flex-first { @@ -6711,78 +6672,176 @@ a.bg-inverse:focus, a.bg-inverse:hover { order: 0; } -.flex-items-top { - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: row !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } -.flex-items-middle { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } -.flex-items-bottom { - -webkit-box-align: end; - -webkit-align-items: flex-end; - -ms-flex-align: end; - align-items: flex-end; +.flex-wrap { + -webkit-flex-wrap: wrap !important; + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } -.flex-top { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; +.flex-nowrap { + -webkit-flex-wrap: nowrap !important; + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } -.flex-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; +.justify-content-start { + -webkit-box-pack: start !important; + -webkit-justify-content: flex-start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } -.flex-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; +.justify-content-end { + -webkit-box-pack: end !important; + -webkit-justify-content: flex-end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } -.flex-items-left { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; +.justify-content-center { + -webkit-box-pack: center !important; + -webkit-justify-content: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } -.flex-items-center { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; +.justify-content-between { + -webkit-box-pack: justify !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -webkit-justify-content: space-around !important; + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -webkit-box-align: start !important; + -webkit-align-items: flex-start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -webkit-box-align: end !important; + -webkit-align-items: flex-end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -webkit-box-align: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -webkit-box-align: baseline !important; + -webkit-align-items: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -webkit-box-align: stretch !important; + -webkit-align-items: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -webkit-align-content: flex-start !important; + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -webkit-align-content: flex-end !important; + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -webkit-align-content: center !important; + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -webkit-align-content: space-between !important; + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -webkit-align-content: space-around !important; + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -webkit-align-content: stretch !important; + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -webkit-align-self: auto !important; + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -webkit-align-self: flex-start !important; + -ms-flex-item-align: start !important; + align-self: flex-start !important; } -.flex-items-right { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; +.align-self-end { + -webkit-align-self: flex-end !important; + -ms-flex-item-align: end !important; + align-self: flex-end !important; } -.flex-items-around { - -webkit-justify-content: space-around; - -ms-flex-pack: distribute; - justify-content: space-around; +.align-self-center { + -webkit-align-self: center !important; + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; } -.flex-items-between { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; +.align-self-baseline { + -webkit-align-self: baseline !important; + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -webkit-align-self: stretch !important; + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } @media (min-width: 576px) { @@ -6804,68 +6863,151 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-order: 0; order: 0; } - .flex-items-sm-top { - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; - } - .flex-items-sm-middle { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - } - .flex-items-sm-bottom { - -webkit-box-align: end; - -webkit-align-items: flex-end; - -ms-flex-align: end; - align-items: flex-end; - } - .flex-sm-top { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; - } - .flex-sm-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; - } - .flex-sm-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; - } - .flex-items-sm-left { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .flex-items-sm-center { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } - .flex-items-sm-right { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .flex-items-sm-around { - -webkit-justify-content: space-around; - -ms-flex-pack: distribute; - justify-content: space-around; - } - .flex-items-sm-between { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: row !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-wrap { + -webkit-flex-wrap: wrap !important; + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -webkit-flex-wrap: nowrap !important; + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -webkit-justify-content: flex-start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -webkit-justify-content: flex-end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -webkit-justify-content: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -webkit-justify-content: space-around !important; + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -webkit-box-align: start !important; + -webkit-align-items: flex-start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -webkit-box-align: end !important; + -webkit-align-items: flex-end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -webkit-box-align: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -webkit-align-items: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -webkit-align-items: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -webkit-align-content: flex-start !important; + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -webkit-align-content: flex-end !important; + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -webkit-align-content: center !important; + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -webkit-align-content: space-between !important; + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -webkit-align-content: space-around !important; + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -webkit-align-content: stretch !important; + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -webkit-align-self: auto !important; + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -webkit-align-self: flex-start !important; + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -webkit-align-self: flex-end !important; + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -webkit-align-self: center !important; + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -webkit-align-self: baseline !important; + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -webkit-align-self: stretch !important; + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } @@ -6888,68 +7030,151 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-order: 0; order: 0; } - .flex-items-md-top { - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; - } - .flex-items-md-middle { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - } - .flex-items-md-bottom { - -webkit-box-align: end; - -webkit-align-items: flex-end; - -ms-flex-align: end; - align-items: flex-end; - } - .flex-md-top { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; - } - .flex-md-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; - } - .flex-md-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; - } - .flex-items-md-left { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .flex-items-md-center { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } - .flex-items-md-right { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .flex-items-md-around { - -webkit-justify-content: space-around; - -ms-flex-pack: distribute; - justify-content: space-around; - } - .flex-items-md-between { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: row !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-wrap { + -webkit-flex-wrap: wrap !important; + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -webkit-flex-wrap: nowrap !important; + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .justify-content-md-start { + -webkit-box-pack: start !important; + -webkit-justify-content: flex-start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -webkit-box-pack: end !important; + -webkit-justify-content: flex-end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -webkit-box-pack: center !important; + -webkit-justify-content: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -webkit-justify-content: space-around !important; + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -webkit-box-align: start !important; + -webkit-align-items: flex-start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -webkit-box-align: end !important; + -webkit-align-items: flex-end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -webkit-box-align: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -webkit-align-items: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -webkit-align-items: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -webkit-align-content: flex-start !important; + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -webkit-align-content: flex-end !important; + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -webkit-align-content: center !important; + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -webkit-align-content: space-between !important; + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -webkit-align-content: space-around !important; + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -webkit-align-content: stretch !important; + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -webkit-align-self: auto !important; + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -webkit-align-self: flex-start !important; + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -webkit-align-self: flex-end !important; + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -webkit-align-self: center !important; + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -webkit-align-self: baseline !important; + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -webkit-align-self: stretch !important; + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } @@ -6972,68 +7197,151 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-order: 0; order: 0; } - .flex-items-lg-top { - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; - } - .flex-items-lg-middle { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - } - .flex-items-lg-bottom { - -webkit-box-align: end; - -webkit-align-items: flex-end; - -ms-flex-align: end; - align-items: flex-end; - } - .flex-lg-top { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; - } - .flex-lg-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; - } - .flex-lg-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; - } - .flex-items-lg-left { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .flex-items-lg-center { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } - .flex-items-lg-right { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .flex-items-lg-around { - -webkit-justify-content: space-around; - -ms-flex-pack: distribute; - justify-content: space-around; - } - .flex-items-lg-between { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: row !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-wrap { + -webkit-flex-wrap: wrap !important; + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -webkit-flex-wrap: nowrap !important; + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -webkit-justify-content: flex-start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -webkit-justify-content: flex-end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -webkit-justify-content: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -webkit-justify-content: space-around !important; + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -webkit-box-align: start !important; + -webkit-align-items: flex-start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -webkit-box-align: end !important; + -webkit-align-items: flex-end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -webkit-box-align: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -webkit-align-items: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -webkit-align-items: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -webkit-align-content: flex-start !important; + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -webkit-align-content: flex-end !important; + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -webkit-align-content: center !important; + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -webkit-align-content: space-between !important; + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -webkit-align-content: space-around !important; + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -webkit-align-content: stretch !important; + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -webkit-align-self: auto !important; + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -webkit-align-self: flex-start !important; + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -webkit-align-self: flex-end !important; + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -webkit-align-self: center !important; + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -webkit-align-self: baseline !important; + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -webkit-align-self: stretch !important; + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } @@ -7056,68 +7364,151 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-order: 0; order: 0; } - .flex-items-xl-top { - -webkit-box-align: start; - -webkit-align-items: flex-start; - -ms-flex-align: start; - align-items: flex-start; - } - .flex-items-xl-middle { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - } - .flex-items-xl-bottom { - -webkit-box-align: end; - -webkit-align-items: flex-end; - -ms-flex-align: end; - align-items: flex-end; - } - .flex-xl-top { - -webkit-align-self: flex-start; - -ms-flex-item-align: start; - align-self: flex-start; - } - .flex-xl-middle { - -webkit-align-self: center; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; - } - .flex-xl-bottom { - -webkit-align-self: flex-end; - -ms-flex-item-align: end; - align-self: flex-end; - } - .flex-items-xl-left { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .flex-items-xl-center { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } - .flex-items-xl-right { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .flex-items-xl-around { - -webkit-justify-content: space-around; - -ms-flex-pack: distribute; - justify-content: space-around; - } - .flex-items-xl-between { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: row !important; + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-wrap { + -webkit-flex-wrap: wrap !important; + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -webkit-flex-wrap: nowrap !important; + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -webkit-justify-content: flex-start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -webkit-justify-content: flex-end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -webkit-justify-content: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -webkit-justify-content: space-around !important; + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -webkit-box-align: start !important; + -webkit-align-items: flex-start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -webkit-box-align: end !important; + -webkit-align-items: flex-end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -webkit-box-align: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -webkit-align-items: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -webkit-align-items: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -webkit-align-content: flex-start !important; + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -webkit-align-content: flex-end !important; + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -webkit-align-content: center !important; + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -webkit-align-content: space-between !important; + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -webkit-align-content: space-around !important; + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -webkit-align-content: stretch !important; + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -webkit-align-self: auto !important; + -ms-flex-item-align: auto !important; + -ms-grid-row-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -webkit-align-self: flex-start !important; + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -webkit-align-self: flex-end !important; + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -webkit-align-self: center !important; + -ms-flex-item-align: center !important; + -ms-grid-row-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -webkit-align-self: baseline !important; + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -webkit-align-self: stretch !important; + -ms-flex-item-align: stretch !important; + -ms-grid-row-align: stretch !important; + align-self: stretch !important; } } -- cgit v1.2.3 From 0e8ee1bfba8351696fbe524fc14aed74e1e402cc Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 25 Dec 2016 15:47:03 -0800 Subject: grunt --- dist/css/bootstrap.css | 325 +++++++++++++++++++++++++------------------------ 1 file changed, 169 insertions(+), 156 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 534d22572..e635d84d0 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4084,7 +4084,7 @@ tbody.collapse.show { .nav-tabs .nav-item.open .nav-link:hover { color: #464a4c; background-color: #fff; - border-color: #ddd #ddd transparent; + border-color: #ddd #ddd #fff; } .nav-tabs .dropdown-menu { @@ -5773,6 +5773,15 @@ button.close { .modal-content { position: relative; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; @@ -5800,40 +5809,59 @@ button.close { } .modal-header { + 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: justify; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; padding: 15px; - border-bottom: 1px solid #f7f7f9; -} - -.modal-header::after { - display: block; - content: ""; - clear: both; -} - -.modal-header .close { - margin-top: -2px; + border-bottom: 1px solid #eceeef; } .modal-title { - margin: 0; + margin-bottom: 0; line-height: 1.5; } .modal-body { position: relative; + -webkit-box-flex: 1; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; padding: 15px; } .modal-footer { + 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: end; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; padding: 15px; - text-align: right; - border-top: 1px solid #f7f7f9; + border-top: 1px solid #eceeef; } -.modal-footer::after { - display: block; - content: ""; - clear: both; +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; } .modal-scrollbar-measure { @@ -7632,11 +7660,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { max-height: 100% !important; } -.mx-auto { - margin-right: auto !important; - margin-left: auto !important; -} - .m-0 { margin: 0 0 !important; } @@ -7997,6 +8020,36 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-bottom: 3rem !important; } +.m-auto { + margin: auto !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.mr-auto { + margin-right: auto !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ml-auto { + margin-left: auto !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + @media (min-width: 576px) { .m-sm-0 { margin: 0 0 !important; @@ -8021,9 +8074,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0 !important; margin-bottom: 0 !important; } -} - -@media (min-width: 576px) { .m-sm-1 { margin: 0.25rem 0.25rem !important; } @@ -8047,9 +8097,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; } -} - -@media (min-width: 576px) { .m-sm-2 { margin: 0.5rem 0.5rem !important; } @@ -8073,9 +8120,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; } -} - -@media (min-width: 576px) { .m-sm-3 { margin: 1rem 1rem !important; } @@ -8099,9 +8143,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1rem !important; margin-bottom: 1rem !important; } -} - -@media (min-width: 576px) { .m-sm-4 { margin: 1.5rem 1.5rem !important; } @@ -8125,9 +8166,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } -} - -@media (min-width: 576px) { .m-sm-5 { margin: 3rem 3rem !important; } @@ -8151,9 +8189,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 3rem !important; margin-bottom: 3rem !important; } -} - -@media (min-width: 576px) { .p-sm-0 { padding: 0 0 !important; } @@ -8177,9 +8212,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0 !important; padding-bottom: 0 !important; } -} - -@media (min-width: 576px) { .p-sm-1 { padding: 0.25rem 0.25rem !important; } @@ -8203,9 +8235,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; } -} - -@media (min-width: 576px) { .p-sm-2 { padding: 0.5rem 0.5rem !important; } @@ -8229,9 +8258,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; } -} - -@media (min-width: 576px) { .p-sm-3 { padding: 1rem 1rem !important; } @@ -8255,9 +8281,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1rem !important; padding-bottom: 1rem !important; } -} - -@media (min-width: 576px) { .p-sm-4 { padding: 1.5rem 1.5rem !important; } @@ -8281,9 +8304,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } -} - -@media (min-width: 576px) { .p-sm-5 { padding: 3rem 3rem !important; } @@ -8307,6 +8327,29 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 3rem !important; padding-bottom: 3rem !important; } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto { + margin-left: auto !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } } @media (min-width: 768px) { @@ -8333,9 +8376,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0 !important; margin-bottom: 0 !important; } -} - -@media (min-width: 768px) { .m-md-1 { margin: 0.25rem 0.25rem !important; } @@ -8359,9 +8399,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; } -} - -@media (min-width: 768px) { .m-md-2 { margin: 0.5rem 0.5rem !important; } @@ -8385,9 +8422,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; } -} - -@media (min-width: 768px) { .m-md-3 { margin: 1rem 1rem !important; } @@ -8411,9 +8445,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1rem !important; margin-bottom: 1rem !important; } -} - -@media (min-width: 768px) { .m-md-4 { margin: 1.5rem 1.5rem !important; } @@ -8437,9 +8468,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } -} - -@media (min-width: 768px) { .m-md-5 { margin: 3rem 3rem !important; } @@ -8463,9 +8491,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 3rem !important; margin-bottom: 3rem !important; } -} - -@media (min-width: 768px) { .p-md-0 { padding: 0 0 !important; } @@ -8489,9 +8514,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0 !important; padding-bottom: 0 !important; } -} - -@media (min-width: 768px) { .p-md-1 { padding: 0.25rem 0.25rem !important; } @@ -8515,9 +8537,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; } -} - -@media (min-width: 768px) { .p-md-2 { padding: 0.5rem 0.5rem !important; } @@ -8541,9 +8560,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; } -} - -@media (min-width: 768px) { .p-md-3 { padding: 1rem 1rem !important; } @@ -8567,9 +8583,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1rem !important; padding-bottom: 1rem !important; } -} - -@media (min-width: 768px) { .p-md-4 { padding: 1.5rem 1.5rem !important; } @@ -8593,9 +8606,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } -} - -@media (min-width: 768px) { .p-md-5 { padding: 3rem 3rem !important; } @@ -8619,6 +8629,29 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 3rem !important; padding-bottom: 3rem !important; } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .mr-md-auto { + margin-right: auto !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto { + margin-left: auto !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } } @media (min-width: 992px) { @@ -8645,9 +8678,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0 !important; margin-bottom: 0 !important; } -} - -@media (min-width: 992px) { .m-lg-1 { margin: 0.25rem 0.25rem !important; } @@ -8671,9 +8701,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; } -} - -@media (min-width: 992px) { .m-lg-2 { margin: 0.5rem 0.5rem !important; } @@ -8697,9 +8724,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; } -} - -@media (min-width: 992px) { .m-lg-3 { margin: 1rem 1rem !important; } @@ -8723,9 +8747,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1rem !important; margin-bottom: 1rem !important; } -} - -@media (min-width: 992px) { .m-lg-4 { margin: 1.5rem 1.5rem !important; } @@ -8749,9 +8770,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } -} - -@media (min-width: 992px) { .m-lg-5 { margin: 3rem 3rem !important; } @@ -8775,9 +8793,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 3rem !important; margin-bottom: 3rem !important; } -} - -@media (min-width: 992px) { .p-lg-0 { padding: 0 0 !important; } @@ -8801,9 +8816,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0 !important; padding-bottom: 0 !important; } -} - -@media (min-width: 992px) { .p-lg-1 { padding: 0.25rem 0.25rem !important; } @@ -8827,9 +8839,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; } -} - -@media (min-width: 992px) { .p-lg-2 { padding: 0.5rem 0.5rem !important; } @@ -8853,9 +8862,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; } -} - -@media (min-width: 992px) { .p-lg-3 { padding: 1rem 1rem !important; } @@ -8879,9 +8885,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1rem !important; padding-bottom: 1rem !important; } -} - -@media (min-width: 992px) { .p-lg-4 { padding: 1.5rem 1.5rem !important; } @@ -8905,9 +8908,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } -} - -@media (min-width: 992px) { .p-lg-5 { padding: 3rem 3rem !important; } @@ -8931,6 +8931,29 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 3rem !important; padding-bottom: 3rem !important; } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto { + margin-left: auto !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } } @media (min-width: 1200px) { @@ -8957,9 +8980,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0 !important; margin-bottom: 0 !important; } -} - -@media (min-width: 1200px) { .m-xl-1 { margin: 0.25rem 0.25rem !important; } @@ -8983,9 +9003,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; } -} - -@media (min-width: 1200px) { .m-xl-2 { margin: 0.5rem 0.5rem !important; } @@ -9009,9 +9026,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; } -} - -@media (min-width: 1200px) { .m-xl-3 { margin: 1rem 1rem !important; } @@ -9035,9 +9049,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1rem !important; margin-bottom: 1rem !important; } -} - -@media (min-width: 1200px) { .m-xl-4 { margin: 1.5rem 1.5rem !important; } @@ -9061,9 +9072,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; } -} - -@media (min-width: 1200px) { .m-xl-5 { margin: 3rem 3rem !important; } @@ -9087,9 +9095,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { margin-top: 3rem !important; margin-bottom: 3rem !important; } -} - -@media (min-width: 1200px) { .p-xl-0 { padding: 0 0 !important; } @@ -9113,9 +9118,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0 !important; padding-bottom: 0 !important; } -} - -@media (min-width: 1200px) { .p-xl-1 { padding: 0.25rem 0.25rem !important; } @@ -9139,9 +9141,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; } -} - -@media (min-width: 1200px) { .p-xl-2 { padding: 0.5rem 0.5rem !important; } @@ -9165,9 +9164,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; } -} - -@media (min-width: 1200px) { .p-xl-3 { padding: 1rem 1rem !important; } @@ -9191,9 +9187,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1rem !important; padding-bottom: 1rem !important; } -} - -@media (min-width: 1200px) { .p-xl-4 { padding: 1.5rem 1.5rem !important; } @@ -9217,9 +9210,6 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; } -} - -@media (min-width: 1200px) { .p-xl-5 { padding: 3rem 3rem !important; } @@ -9243,6 +9233,29 @@ a.bg-inverse:focus, a.bg-inverse:hover { padding-top: 3rem !important; padding-bottom: 3rem !important; } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto { + margin-left: auto !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } } .pos-f-t { -- cgit v1.2.3 From 4d1b7df0d8f645c644a678a2f16caeca59aab3cb Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 25 Dec 2016 15:52:16 -0800 Subject: grunt --- dist/css/bootstrap.css | 41 +++++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 12 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index e635d84d0..2fa44777e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2359,20 +2359,20 @@ select.form-control:focus::-ms-value { } .col-form-label { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + padding-top: calc(0.5rem - 1px * 2); + padding-bottom: calc(0.5rem - 1px * 2); margin-bottom: 0; } .col-form-label-lg { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + padding-top: calc(0.75rem - 1px * 2); + padding-bottom: calc(0.75rem - 1px * 2); font-size: 1.25rem; } .col-form-label-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + padding-top: calc(0.25rem - 1px * 2); + padding-bottom: calc(0.25rem - 1px * 2); font-size: 0.875rem; } @@ -2386,6 +2386,7 @@ select.form-control:focus::-ms-value { .form-control-static { padding-top: 0.5rem; padding-bottom: 0.5rem; + margin-bottom: 0; line-height: 1.25; border: solid transparent; border-width: 1px 0; @@ -2602,6 +2603,10 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; margin-bottom: 0; } .form-inline .form-control { @@ -2611,7 +2616,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .form-control-static { display: inline-block; - margin-bottom: 0; } .form-inline .input-group { width: auto; @@ -3834,7 +3838,10 @@ tbody.collapse.show { .custom-control { position: relative; - display: inline-block; + display: -webkit-inline-box; + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; min-height: 1.5rem; padding-left: 1.5rem; margin-right: 1rem; @@ -3853,8 +3860,8 @@ tbody.collapse.show { } .custom-control-input:focus ~ .custom-control-indicator { - -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0275d8; - box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0275d8; + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8; + box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8; } .custom-control-input:active ~ .custom-control-indicator { @@ -3912,10 +3919,20 @@ tbody.collapse.show { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); } +.custom-controls-stacked { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; +} + .custom-controls-stacked .custom-control { - float: left; margin-bottom: 0.25rem; - clear: left; } .custom-controls-stacked .custom-control + .custom-control { -- cgit v1.2.3 From 14fe088cab41dc141093e648738545758b097347 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 26 Dec 2016 13:11:05 -0800 Subject: grunt --- dist/css/bootstrap.css | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 2fa44777e..eff3427c1 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -6733,6 +6733,22 @@ a.bg-inverse:focus, a.bg-inverse:hover { flex-direction: column !important; } +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: row-reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: column-reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + .flex-wrap { -webkit-flex-wrap: wrap !important; -ms-flex-wrap: wrap !important; @@ -6745,6 +6761,12 @@ a.bg-inverse:focus, a.bg-inverse:hover { flex-wrap: nowrap !important; } +.flex-wrap-reverse { + -webkit-flex-wrap: wrap-reverse !important; + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + .justify-content-start { -webkit-box-pack: start !important; -webkit-justify-content: flex-start !important; @@ -6922,6 +6944,20 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-direction: column !important; flex-direction: column !important; } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: row-reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: column-reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } .flex-sm-wrap { -webkit-flex-wrap: wrap !important; -ms-flex-wrap: wrap !important; @@ -6932,6 +6968,11 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + -webkit-flex-wrap: wrap-reverse !important; + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } .justify-content-sm-start { -webkit-box-pack: start !important; -webkit-justify-content: flex-start !important; @@ -7089,6 +7130,20 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-direction: column !important; flex-direction: column !important; } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: row-reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: column-reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } .flex-md-wrap { -webkit-flex-wrap: wrap !important; -ms-flex-wrap: wrap !important; @@ -7099,6 +7154,11 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + -webkit-flex-wrap: wrap-reverse !important; + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } .justify-content-md-start { -webkit-box-pack: start !important; -webkit-justify-content: flex-start !important; @@ -7256,6 +7316,20 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-direction: column !important; flex-direction: column !important; } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: row-reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: column-reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } .flex-lg-wrap { -webkit-flex-wrap: wrap !important; -ms-flex-wrap: wrap !important; @@ -7266,6 +7340,11 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + -webkit-flex-wrap: wrap-reverse !important; + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } .justify-content-lg-start { -webkit-box-pack: start !important; -webkit-justify-content: flex-start !important; @@ -7423,6 +7502,20 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-direction: column !important; flex-direction: column !important; } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: row-reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -webkit-flex-direction: column-reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } .flex-xl-wrap { -webkit-flex-wrap: wrap !important; -ms-flex-wrap: wrap !important; @@ -7433,6 +7526,11 @@ a.bg-inverse:focus, a.bg-inverse:hover { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + -webkit-flex-wrap: wrap-reverse !important; + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } .justify-content-xl-start { -webkit-box-pack: start !important; -webkit-justify-content: flex-start !important; -- cgit v1.2.3 From d3646e3884f1301c0ea934334d935919319e4f1a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 27 Dec 2016 14:27:41 -0800 Subject: grunt --- dist/css/bootstrap.css | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index eff3427c1..61df7d551 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2441,11 +2441,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .form-check { position: relative; display: block; - margin-bottom: 0.75rem; -} - -.form-check + .form-check { - margin-top: -.25rem; + margin-bottom: 0.5rem; } .form-check.disabled .form-check-label { @@ -2461,7 +2457,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .form-check-input { position: absolute; - margin-top: .25rem; + margin-top: 0.25rem; margin-left: -1.25rem; } @@ -2478,7 +2474,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-check-inline + .form-check-inline { - margin-left: .75rem; + margin-left: 0.75rem; } .form-control-feedback { @@ -2646,6 +2642,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for } .form-inline .form-check-input { position: relative; + margin-top: 0; + margin-right: 0.25rem; margin-left: 0; } .form-inline .custom-control { @@ -2666,7 +2664,7 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for .form-inline .custom-control-indicator { position: static; display: inline-block; - margin-right: .25rem; + margin-right: 0.25rem; vertical-align: text-bottom; } .form-inline .has-feedback .form-control-feedback { -- cgit v1.2.3 From e1e621be046a4541a2fd36e445015ee44de3c67e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 28 Dec 2016 15:15:29 -0800 Subject: grunt --- dist/css/bootstrap.css | 649 +++++++++++++++++-------------------------------- 1 file changed, 224 insertions(+), 425 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 61df7d551..651d2ddcd 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2679,7 +2679,6 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for text-align: center; white-space: nowrap; vertical-align: middle; - cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -2693,22 +2692,14 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for transition: all 0.2s ease-in-out; } -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - .btn:focus, .btn:hover { text-decoration: none; } -.btn.focus { - text-decoration: none; -} - -.btn:active, .btn.active { - background-image: none; +.btn:focus, .btn.focus { outline: 0; + -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25); + box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25); } .btn.disabled, .btn:disabled { @@ -2716,6 +2707,10 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for opacity: .65; } +.btn:active, .btn.active { + background-image: none; +} + a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; @@ -2734,36 +2729,21 @@ fieldset[disabled] a.btn { } .btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #025aa5; - border-color: #01549b; + -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); + box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); } -.btn-primary:active, .btn-primary.active, -.open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #025aa5; - border-color: #01549b; - background-image: none; -} - -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, -.open > .btn-primary.dropdown-toggle:hover, -.open > .btn-primary.dropdown-toggle:focus, -.open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #014682; - border-color: #01315a; -} - -.btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary:disabled:focus, .btn-primary:disabled.focus { +.btn-primary.disabled, .btn-primary:disabled { background-color: #0275d8; border-color: #0275d8; } -.btn-primary.disabled:hover, .btn-primary:disabled:hover { - background-color: #0275d8; - border-color: #0275d8; +.btn-primary:active, .btn-primary.active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #025aa5; + background-image: none; + border-color: #01549b; } .btn-secondary { @@ -2779,36 +2759,21 @@ fieldset[disabled] a.btn { } .btn-secondary:focus, .btn-secondary.focus { - color: #292b2c; - background-color: #e6e6e6; - border-color: #adadad; + -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); + box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); } -.btn-secondary:active, .btn-secondary.active, -.open > .btn-secondary.dropdown-toggle { - color: #292b2c; - background-color: #e6e6e6; - border-color: #adadad; - background-image: none; -} - -.btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus, -.open > .btn-secondary.dropdown-toggle:hover, -.open > .btn-secondary.dropdown-toggle:focus, -.open > .btn-secondary.dropdown-toggle.focus { - color: #292b2c; - background-color: #d4d4d4; - border-color: #8c8c8c; -} - -.btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary:disabled.focus { +.btn-secondary.disabled, .btn-secondary:disabled { background-color: #fff; border-color: #ccc; } -.btn-secondary.disabled:hover, .btn-secondary:disabled:hover { - background-color: #fff; - border-color: #ccc; +.btn-secondary:active, .btn-secondary.active, +.show > .btn-secondary.dropdown-toggle { + color: #292b2c; + background-color: #e6e6e6; + background-image: none; + border-color: #adadad; } .btn-info { @@ -2824,36 +2789,21 @@ fieldset[disabled] a.btn { } .btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #2aabd2; -} - -.btn-info:active, .btn-info.active, -.open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - border-color: #2aabd2; - background-image: none; -} - -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, -.open > .btn-info.dropdown-toggle:hover, -.open > .btn-info.dropdown-toggle:focus, -.open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1f7e9a; + -webkit-box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); + box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); } -.btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info:disabled.focus { +.btn-info.disabled, .btn-info:disabled { background-color: #5bc0de; border-color: #5bc0de; } -.btn-info.disabled:hover, .btn-info:disabled:hover { - background-color: #5bc0de; - border-color: #5bc0de; +.btn-info:active, .btn-info.active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #31b0d5; + background-image: none; + border-color: #2aabd2; } .btn-success { @@ -2869,36 +2819,21 @@ fieldset[disabled] a.btn { } .btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #419641; -} - -.btn-success:active, .btn-success.active, -.open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - border-color: #419641; - background-image: none; + -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); + box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); } -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, -.open > .btn-success.dropdown-toggle:hover, -.open > .btn-success.dropdown-toggle:focus, -.open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #2d672d; -} - -.btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success:disabled.focus { +.btn-success.disabled, .btn-success:disabled { background-color: #5cb85c; border-color: #5cb85c; } -.btn-success.disabled:hover, .btn-success:disabled:hover { - background-color: #5cb85c; - border-color: #5cb85c; +.btn-success:active, .btn-success.active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #449d44; + background-image: none; + border-color: #419641; } .btn-warning { @@ -2914,36 +2849,21 @@ fieldset[disabled] a.btn { } .btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #eb9316; + -webkit-box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); + box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); } -.btn-warning:active, .btn-warning.active, -.open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - border-color: #eb9316; - background-image: none; -} - -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, -.open > .btn-warning.dropdown-toggle:hover, -.open > .btn-warning.dropdown-toggle:focus, -.open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #b06d0f; -} - -.btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning:disabled.focus { +.btn-warning.disabled, .btn-warning:disabled { background-color: #f0ad4e; border-color: #f0ad4e; } -.btn-warning.disabled:hover, .btn-warning:disabled:hover { - background-color: #f0ad4e; - border-color: #f0ad4e; +.btn-warning:active, .btn-warning.active, +.show > .btn-warning.dropdown-toggle { + color: #fff; + background-color: #ec971f; + background-image: none; + border-color: #eb9316; } .btn-danger { @@ -2959,36 +2879,21 @@ fieldset[disabled] a.btn { } .btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #c12e2a; -} - -.btn-danger:active, .btn-danger.active, -.open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - border-color: #c12e2a; - background-image: none; -} - -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, -.open > .btn-danger.dropdown-toggle:hover, -.open > .btn-danger.dropdown-toggle:focus, -.open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #8b211e; + -webkit-box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); + box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); } -.btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger:disabled.focus { +.btn-danger.disabled, .btn-danger:disabled { background-color: #d9534f; border-color: #d9534f; } -.btn-danger.disabled:hover, .btn-danger:disabled:hover { - background-color: #d9534f; - border-color: #d9534f; +.btn-danger:active, .btn-danger.active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #c9302c; + background-image: none; + border-color: #c12e2a; } .btn-outline-primary { @@ -3005,35 +2910,22 @@ fieldset[disabled] a.btn { } .btn-outline-primary:focus, .btn-outline-primary.focus { - color: #fff; - background-color: #0275d8; - border-color: #0275d8; + -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); + box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #0275d8; + background-color: transparent; } .btn-outline-primary:active, .btn-outline-primary.active, -.open > .btn-outline-primary.dropdown-toggle { +.show > .btn-outline-primary.dropdown-toggle { color: #fff; background-color: #0275d8; border-color: #0275d8; } -.btn-outline-primary:active:hover, .btn-outline-primary:active:focus, .btn-outline-primary:active.focus, .btn-outline-primary.active:hover, .btn-outline-primary.active:focus, .btn-outline-primary.active.focus, -.open > .btn-outline-primary.dropdown-toggle:hover, -.open > .btn-outline-primary.dropdown-toggle:focus, -.open > .btn-outline-primary.dropdown-toggle.focus { - color: #fff; - background-color: #014682; - border-color: #01315a; -} - -.btn-outline-primary.disabled:focus, .btn-outline-primary.disabled.focus, .btn-outline-primary:disabled:focus, .btn-outline-primary:disabled.focus { - border-color: #43a7fd; -} - -.btn-outline-primary.disabled:hover, .btn-outline-primary:disabled:hover { - border-color: #43a7fd; -} - .btn-outline-secondary { color: #ccc; background-image: none; @@ -3048,35 +2940,22 @@ fieldset[disabled] a.btn { } .btn-outline-secondary:focus, .btn-outline-secondary.focus { - color: #fff; - background-color: #ccc; - border-color: #ccc; + -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); + box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #ccc; + background-color: transparent; } .btn-outline-secondary:active, .btn-outline-secondary.active, -.open > .btn-outline-secondary.dropdown-toggle { +.show > .btn-outline-secondary.dropdown-toggle { color: #fff; background-color: #ccc; border-color: #ccc; } -.btn-outline-secondary:active:hover, .btn-outline-secondary:active:focus, .btn-outline-secondary:active.focus, .btn-outline-secondary.active:hover, .btn-outline-secondary.active:focus, .btn-outline-secondary.active.focus, -.open > .btn-outline-secondary.dropdown-toggle:hover, -.open > .btn-outline-secondary.dropdown-toggle:focus, -.open > .btn-outline-secondary.dropdown-toggle.focus { - color: #fff; - background-color: #a1a1a1; - border-color: #8c8c8c; -} - -.btn-outline-secondary.disabled:focus, .btn-outline-secondary.disabled.focus, .btn-outline-secondary:disabled:focus, .btn-outline-secondary:disabled.focus { - border-color: white; -} - -.btn-outline-secondary.disabled:hover, .btn-outline-secondary:disabled:hover { - border-color: white; -} - .btn-outline-info { color: #5bc0de; background-image: none; @@ -3091,35 +2970,22 @@ fieldset[disabled] a.btn { } .btn-outline-info:focus, .btn-outline-info.focus { - color: #fff; - background-color: #5bc0de; - border-color: #5bc0de; + -webkit-box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); + box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #5bc0de; + background-color: transparent; } .btn-outline-info:active, .btn-outline-info.active, -.open > .btn-outline-info.dropdown-toggle { +.show > .btn-outline-info.dropdown-toggle { color: #fff; background-color: #5bc0de; border-color: #5bc0de; } -.btn-outline-info:active:hover, .btn-outline-info:active:focus, .btn-outline-info:active.focus, .btn-outline-info.active:hover, .btn-outline-info.active:focus, .btn-outline-info.active.focus, -.open > .btn-outline-info.dropdown-toggle:hover, -.open > .btn-outline-info.dropdown-toggle:focus, -.open > .btn-outline-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1f7e9a; -} - -.btn-outline-info.disabled:focus, .btn-outline-info.disabled.focus, .btn-outline-info:disabled:focus, .btn-outline-info:disabled.focus { - border-color: #b0e1ef; -} - -.btn-outline-info.disabled:hover, .btn-outline-info:disabled:hover { - border-color: #b0e1ef; -} - .btn-outline-success { color: #5cb85c; background-image: none; @@ -3134,35 +3000,22 @@ fieldset[disabled] a.btn { } .btn-outline-success:focus, .btn-outline-success.focus { - color: #fff; - background-color: #5cb85c; - border-color: #5cb85c; + -webkit-box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); + box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #5cb85c; + background-color: transparent; } .btn-outline-success:active, .btn-outline-success.active, -.open > .btn-outline-success.dropdown-toggle { +.show > .btn-outline-success.dropdown-toggle { color: #fff; background-color: #5cb85c; border-color: #5cb85c; } -.btn-outline-success:active:hover, .btn-outline-success:active:focus, .btn-outline-success:active.focus, .btn-outline-success.active:hover, .btn-outline-success.active:focus, .btn-outline-success.active.focus, -.open > .btn-outline-success.dropdown-toggle:hover, -.open > .btn-outline-success.dropdown-toggle:focus, -.open > .btn-outline-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #2d672d; -} - -.btn-outline-success.disabled:focus, .btn-outline-success.disabled.focus, .btn-outline-success:disabled:focus, .btn-outline-success:disabled.focus { - border-color: #a3d7a3; -} - -.btn-outline-success.disabled:hover, .btn-outline-success:disabled:hover { - border-color: #a3d7a3; -} - .btn-outline-warning { color: #f0ad4e; background-image: none; @@ -3177,35 +3030,22 @@ fieldset[disabled] a.btn { } .btn-outline-warning:focus, .btn-outline-warning.focus { - color: #fff; - background-color: #f0ad4e; - border-color: #f0ad4e; + -webkit-box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); + box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #f0ad4e; + background-color: transparent; } .btn-outline-warning:active, .btn-outline-warning.active, -.open > .btn-outline-warning.dropdown-toggle { +.show > .btn-outline-warning.dropdown-toggle { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } -.btn-outline-warning:active:hover, .btn-outline-warning:active:focus, .btn-outline-warning:active.focus, .btn-outline-warning.active:hover, .btn-outline-warning.active:focus, .btn-outline-warning.active.focus, -.open > .btn-outline-warning.dropdown-toggle:hover, -.open > .btn-outline-warning.dropdown-toggle:focus, -.open > .btn-outline-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #b06d0f; -} - -.btn-outline-warning.disabled:focus, .btn-outline-warning.disabled.focus, .btn-outline-warning:disabled:focus, .btn-outline-warning:disabled.focus { - border-color: #f8d9ac; -} - -.btn-outline-warning.disabled:hover, .btn-outline-warning:disabled:hover { - border-color: #f8d9ac; -} - .btn-outline-danger { color: #d9534f; background-image: none; @@ -3220,35 +3060,22 @@ fieldset[disabled] a.btn { } .btn-outline-danger:focus, .btn-outline-danger.focus { - color: #fff; - background-color: #d9534f; - border-color: #d9534f; + -webkit-box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); + box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #d9534f; + background-color: transparent; } .btn-outline-danger:active, .btn-outline-danger.active, -.open > .btn-outline-danger.dropdown-toggle { +.show > .btn-outline-danger.dropdown-toggle { color: #fff; background-color: #d9534f; border-color: #d9534f; } -.btn-outline-danger:active:hover, .btn-outline-danger:active:focus, .btn-outline-danger:active.focus, .btn-outline-danger.active:hover, .btn-outline-danger.active:focus, .btn-outline-danger.active.focus, -.open > .btn-outline-danger.dropdown-toggle:hover, -.open > .btn-outline-danger.dropdown-toggle:focus, -.open > .btn-outline-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #8b211e; -} - -.btn-outline-danger.disabled:focus, .btn-outline-danger.disabled.focus, .btn-outline-danger:disabled:focus, .btn-outline-danger:disabled.focus { - border-color: #eba5a3; -} - -.btn-outline-danger.disabled:hover, .btn-outline-danger:disabled:hover { - border-color: #eba5a3; -} - .btn-link { font-weight: normal; color: #0275d8; @@ -3273,8 +3100,11 @@ fieldset[disabled] a.btn { background-color: transparent; } -.btn-link:disabled:focus, .btn-link:disabled:hover { +.btn-link:disabled { color: #636c72; +} + +.btn-link:disabled:focus, .btn-link:disabled:hover { text-decoration: none; } @@ -3414,22 +3244,16 @@ tbody.collapse.show { background-color: #f7f7f9; } -.dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover { +.dropdown-item.active, .dropdown-item:active { color: #fff; text-decoration: none; background-color: #0275d8; - outline: 0; } -.dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover { +.dropdown-item.disabled, .dropdown-item:disabled { color: #636c72; -} - -.dropdown-item.disabled:focus, .dropdown-item.disabled:hover { - text-decoration: none; cursor: not-allowed; background-color: transparent; - background-image: none; } .show > .dropdown-menu { @@ -3485,15 +3309,25 @@ tbody.collapse.show { .btn-group, .btn-group-vertical { position: relative; - display: inline-block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; - float: left; - margin-bottom: 0; + -webkit-box-flex: 0; + -webkit-flex: 0 1 auto; + -ms-flex: 0 1 auto; + flex: 0 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 2; } .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, @@ -3503,37 +3337,30 @@ tbody.collapse.show { z-index: 2; } -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 2; -} - .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { +.btn-group .btn-group + .btn-group, +.btn-group-vertical .btn + .btn, +.btn-group-vertical .btn + .btn-group, +.btn-group-vertical .btn-group + .btn, +.btn-group-vertical .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { - margin-left: -0.5rem; -} - -.btn-toolbar::after { - display: block; - content: ""; - clear: both; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: start; + -webkit-justify-content: flex-start; + -ms-flex-pack: start; + justify-content: flex-start; } -.btn-toolbar .btn-group, .btn-toolbar .input-group { - float: left; -} - -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 0.5rem; + width: auto; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { @@ -3611,23 +3438,29 @@ tbody.collapse.show { border-width: 0 0.3em 0.3em; } -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} - -.btn-group-vertical > .btn-group::after { - display: block; - content: ""; - clear: both; +.btn-group-vertical { + display: -webkit-inline-box; + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; } -.btn-group-vertical > .btn-group > .btn { - float: none; +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { + width: 100%; } .btn-group-vertical > .btn + .btn, @@ -4061,12 +3894,7 @@ tbody.collapse.show { .nav-link.disabled { color: #636c72; -} - -.nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover { - color: #636c72; cursor: not-allowed; - background-color: transparent; } .nav-tabs { @@ -4087,16 +3915,14 @@ tbody.collapse.show { border-color: #eceeef #eceeef #ddd; } -.nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover { +.nav-tabs .nav-link.disabled { color: #636c72; background-color: transparent; border-color: transparent; } -.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover, -.nav-tabs .nav-item.open .nav-link, -.nav-tabs .nav-item.open .nav-link:focus, -.nav-tabs .nav-item.open .nav-link:hover { +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { color: #464a4c; background-color: #fff; border-color: #ddd #ddd #fff; @@ -4112,10 +3938,8 @@ tbody.collapse.show { border-radius: 0.25rem; } -.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover, -.nav-pills .nav-item.open .nav-link, -.nav-pills .nav-item.open .nav-link:focus, -.nav-pills .nav-item.open .nav-link:hover { +.nav-pills .nav-link.active, +.nav-pills .nav-item.show .nav-link { color: #fff; cursor: default; background-color: #0275d8; @@ -4147,6 +3971,10 @@ tbody.collapse.show { .navbar { position: relative; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; padding: 0.5rem 1rem; } @@ -4277,16 +4105,10 @@ tbody.collapse.show { color: rgba(0, 0, 0, 0.3); } -.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover, +.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .active > .nav-link:focus, -.navbar-light .navbar-nav .active > .nav-link:hover, .navbar-light .navbar-nav .nav-link.open, -.navbar-light .navbar-nav .nav-link.open:focus, -.navbar-light .navbar-nav .nav-link.open:hover, -.navbar-light .navbar-nav .nav-link.active, -.navbar-light .navbar-nav .nav-link.active:focus, -.navbar-light .navbar-nav .nav-link.active:hover { +.navbar-light .navbar-nav .nav-link.active { color: rgba(0, 0, 0, 0.9); } @@ -4329,16 +4151,10 @@ tbody.collapse.show { color: rgba(255, 255, 255, 0.25); } -.navbar-inverse .navbar-nav .open > .nav-link, .navbar-inverse .navbar-nav .open > .nav-link:focus, .navbar-inverse .navbar-nav .open > .nav-link:hover, +.navbar-inverse .navbar-nav .open > .nav-link, .navbar-inverse .navbar-nav .active > .nav-link, -.navbar-inverse .navbar-nav .active > .nav-link:focus, -.navbar-inverse .navbar-nav .active > .nav-link:hover, .navbar-inverse .navbar-nav .nav-link.open, -.navbar-inverse .navbar-nav .nav-link.open:focus, -.navbar-inverse .navbar-nav .nav-link.open:hover, -.navbar-inverse .navbar-nav .nav-link.active, -.navbar-inverse .navbar-nav .nav-link.active:focus, -.navbar-inverse .navbar-nav .nav-link.active:hover { +.navbar-inverse .navbar-nav .nav-link.active { color: white; } @@ -5007,17 +4823,15 @@ tbody.collapse.show { } .pagination { - display: inline-block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; padding-left: 0; - margin-top: 1rem; - margin-bottom: 1rem; + list-style: none; border-radius: 0.25rem; } -.page-item { - display: inline; -} - .page-item:first-child .page-link { margin-left: 0; border-bottom-left-radius: 0.25rem; @@ -5029,15 +4843,14 @@ tbody.collapse.show { border-top-right-radius: 0.25rem; } -.page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover { +.page-item.active .page-link { z-index: 2; color: #fff; - cursor: default; background-color: #0275d8; border-color: #0275d8; } -.page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover { +.page-item.disabled .page-link { color: #636c72; pointer-events: none; cursor: not-allowed; @@ -5047,7 +4860,7 @@ tbody.collapse.show { .page-link { position: relative; - float: left; + display: block; padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; @@ -5449,6 +5262,27 @@ base::-moz-progress-bar, margin-bottom: 0; } +.list-group-item-action { + width: 100%; + color: #464a4c; + text-align: inherit; +} + +.list-group-item-action .list-group-item-heading { + color: #292b2c; +} + +.list-group-item-action:focus, .list-group-item-action:hover { + color: #464a4c; + text-decoration: none; + background-color: #f7f7f9; +} + +.list-group-item-action:active { + color: #292b2c; + background-color: #eceeef; +} + .list-group-item { position: relative; display: -webkit-box; @@ -5479,39 +5313,38 @@ base::-moz-progress-bar, border-bottom-left-radius: 0.25rem; } -.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover { +.list-group-item:focus, .list-group-item:hover { + text-decoration: none; +} + +.list-group-item.disabled, .list-group-item:disabled { color: #636c72; cursor: not-allowed; - background-color: #eceeef; + background-color: #fff; } -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading { +.list-group-item.disabled .list-group-item-heading, .list-group-item:disabled .list-group-item-heading { color: inherit; } -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text { +.list-group-item.disabled .list-group-item-text, .list-group-item:disabled .list-group-item-text { color: #636c72; } -.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover { +.list-group-item.active { z-index: 2; color: #fff; - text-decoration: none; background-color: #0275d8; border-color: #0275d8; } .list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small { +.list-group-item.active .list-group-item-heading > .small { color: inherit; } -.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text { +.list-group-item.active .list-group-item-text { color: #daeeff; } @@ -5529,22 +5362,6 @@ base::-moz-progress-bar, border-bottom: 0; } -.list-group-item-action { - width: 100%; - color: #464a4c; - text-align: inherit; -} - -.list-group-item-action .list-group-item-heading { - color: #292b2c; -} - -.list-group-item-action:focus, .list-group-item-action:hover { - color: #464a4c; - text-decoration: none; - background-color: #f7f7f9; -} - .list-group-item-success { color: #3c763d; background-color: #dff0d8; @@ -5567,10 +5384,8 @@ button.list-group-item-success:hover { background-color: #d0e9c6; } -a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, -button.list-group-item-success.active, -button.list-group-item-success.active:focus, -button.list-group-item-success.active:hover { +a.list-group-item-success.active, +button.list-group-item-success.active { color: #fff; background-color: #3c763d; border-color: #3c763d; @@ -5598,10 +5413,8 @@ button.list-group-item-info:hover { background-color: #c4e3f3; } -a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, -button.list-group-item-info.active, -button.list-group-item-info.active:focus, -button.list-group-item-info.active:hover { +a.list-group-item-info.active, +button.list-group-item-info.active { color: #fff; background-color: #31708f; border-color: #31708f; @@ -5629,10 +5442,8 @@ button.list-group-item-warning:hover { background-color: #faf2cc; } -a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, -button.list-group-item-warning.active, -button.list-group-item-warning.active:focus, -button.list-group-item-warning.active:hover { +a.list-group-item-warning.active, +button.list-group-item-warning.active { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; @@ -5660,25 +5471,13 @@ button.list-group-item-danger:hover { background-color: #ebcccc; } -a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, -button.list-group-item-danger.active, -button.list-group-item-danger.active:focus, -button.list-group-item-danger.active:hover { +a.list-group-item-danger.active, +button.list-group-item-danger.active { color: #fff; background-color: #a94442; border-color: #a94442; } -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} - .embed-responsive { position: relative; display: block; -- cgit v1.2.3