diff options
Diffstat (limited to 'docs/dist/css/bootstrap.css')
| -rw-r--r-- | docs/dist/css/bootstrap.css | 208 |
1 files changed, 121 insertions, 87 deletions
diff --git a/docs/dist/css/bootstrap.css b/docs/dist/css/bootstrap.css index 2dfbad936..363b6afcd 100644 --- a/docs/dist/css/bootstrap.css +++ b/docs/dist/css/bootstrap.css @@ -1,5 +1,5 @@ /*! - * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com) + * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com) * Copyright 2011-2016 The Bootstrap Authors * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @@ -321,7 +321,7 @@ html { } body { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1rem; line-height: 1.5; color: #373a3c; @@ -2097,14 +2097,8 @@ 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 .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label, +.has-success .form-check-label, +.has-success .form-check-inline, .has-success .custom-control { color: #5cb85c; } @@ -2129,14 +2123,8 @@ 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 .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label, +.has-warning .form-check-label, +.has-warning .form-check-inline, .has-warning .custom-control { color: #f0ad4e; } @@ -2161,14 +2149,8 @@ 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 .radio, -.has-danger .checkbox, -.has-danger .radio-inline, -.has-danger .checkbox-inline, -.has-danger.radio label, -.has-danger.checkbox label, -.has-danger.radio-inline label, -.has-danger.checkbox-inline label, +.has-danger .form-check-label, +.has-danger .form-check-inline, .has-danger .custom-control { color: #d9534f; } @@ -3377,7 +3359,7 @@ input[type="button"].btn-block { .custom-control { position: relative; - display: inline; + display: inline-block; padding-left: 1.5rem; cursor: pointer; } @@ -3419,7 +3401,7 @@ input[type="button"].btn-block { .custom-control-indicator { position: absolute; - top: .0625rem; + top: .25rem; left: 0; display: block; width: 1rem; @@ -3458,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 { @@ -3800,10 +3777,14 @@ 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: transparent no-repeat center center; + -webkit-background-size: 24px 24px; + background-size: 24px 24px; border: 1px solid transparent; border-radius: 0.25rem; } @@ -3812,24 +3793,6 @@ input[type="button"].btn-block { text-decoration: none; } -@media (min-width: 544px) { - .navbar-toggleable-xs { - display: block !important; - } -} - -@media (min-width: 768px) { - .navbar-toggleable-sm { - display: block !important; - } -} - -@media (min-width: 992px) { - .navbar-toggleable-md { - display: block !important; - } -} - .navbar-nav .nav-item { float: left; } @@ -3877,6 +3840,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); } @@ -3910,10 +3877,71 @@ 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); } +.navbar-toggleable-xs::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 543px) { + .navbar-toggleable-xs .navbar-nav .nav-item { + float: none; + margin-left: 0; + } +} + +@media (min-width: 544px) { + .navbar-toggleable-xs { + display: block !important; + } +} + +.navbar-toggleable-sm::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 767px) { + .navbar-toggleable-sm .navbar-nav .nav-item { + float: none; + margin-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-toggleable-sm { + display: block !important; + } +} + +.navbar-toggleable-md::after { + content: ""; + display: table; + clear: both; +} + +@media (max-width: 991px) { + .navbar-toggleable-md .navbar-nav .nav-item { + float: none; + margin-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-toggleable-md { + display: block !important; + } +} + .card { position: relative; display: block; @@ -3966,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); } @@ -3977,7 +4006,7 @@ input[type="button"].btn-block { } .card-header:first-child { - border-radius: 0.25rem 0.25rem 0 0; + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } .card-footer { @@ -3993,7 +4022,7 @@ input[type="button"].btn-block { } .card-footer:last-child { - border-radius: 0 0 0.25rem 0.25rem; + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } .card-header-tabs { @@ -4118,7 +4147,7 @@ input[type="button"].btn-block { } .card-img { - border-radius: 0.25rem; + border-radius: calc(0.25rem - 1px); } .card-img-overlay { @@ -4131,13 +4160,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(0.25rem - 1px); + border-top-left-radius: calc(0.25rem - 1px); } .card-img-bottom { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } @media (min-width: 544px) { @@ -4447,7 +4476,7 @@ a.tag:focus, a.tag:hover { } .alert { - padding: 15px; + padding: 1rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem; @@ -4462,13 +4491,13 @@ a.tag:focus, a.tag:hover { } .alert-dismissible { - padding-right: 35px; + padding-right: 2rem; } .alert-dismissible .close { position: relative; - top: -2px; - right: -21px; + top: -.125rem; + right: -1rem; color: inherit; } @@ -4744,14 +4773,6 @@ base::-moz-progress-bar, } } -.media { - margin-top: 15px; -} - -.media:first-child { - margin-top: 0; -} - .media, .media-body { overflow: hidden; @@ -5100,7 +5121,7 @@ button.close { .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; transition: -webkit-transform .3s ease-out; - -o-transition: transform .3s ease-out, -o-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-transform: translate(0, -25%); @@ -5220,7 +5241,7 @@ button.close { position: absolute; z-index: 1070; display: block; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; @@ -5320,7 +5341,7 @@ button.close { display: block; max-width: 276px; padding: 1px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; @@ -5485,7 +5506,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; @@ -5691,10 +5712,6 @@ button.close { } } -.bg-inverse { - background-color: #373a3c; -} - .bg-faded { background-color: #f7f7f9; } @@ -5744,6 +5761,15 @@ a.bg-danger:focus, a.bg-danger:hover { background-color: #c9302c !important; } +.bg-inverse { + color: #fff !important; + background-color: #373a3c !important; +} + +a.bg-inverse:focus, a.bg-inverse:hover { + background-color: #1f2021 !important; +} + .clearfix::after { content: ""; display: table; @@ -6202,7 +6228,7 @@ a.bg-danger:focus, a.bg-danger:hover { } a.text-muted:focus, a.text-muted:hover { - color: #687077; + color: #687077 !important; } .text-primary { @@ -6210,7 +6236,7 @@ a.text-muted:focus, a.text-muted:hover { } a.text-primary:focus, a.text-primary:hover { - color: #025aa5; + color: #025aa5 !important; } .text-success { @@ -6218,7 +6244,7 @@ a.text-primary:focus, a.text-primary:hover { } a.text-success:focus, a.text-success:hover { - color: #449d44; + color: #449d44 !important; } .text-info { @@ -6226,7 +6252,7 @@ a.text-success:focus, a.text-success:hover { } a.text-info:focus, a.text-info:hover { - color: #31b0d5; + color: #31b0d5 !important; } .text-warning { @@ -6234,7 +6260,7 @@ a.text-info:focus, a.text-info:hover { } a.text-warning:focus, a.text-warning:hover { - color: #ec971f; + color: #ec971f !important; } .text-danger { @@ -6242,7 +6268,15 @@ a.text-warning:focus, a.text-warning:hover { } a.text-danger:focus, a.text-danger:hover { - color: #c9302c; + color: #c9302c !important; +} + +.text-gray-dark { + color: #373a3c !important; +} + +a.text-gray-dark:focus, a.text-gray-dark:hover { + color: #1f2021 !important; } .text-hide { |
