diff --git a/database/migrations/2014_10_13_000000_create_users_table.php b/database/migrations/2014_10_13_000000_create_users_table.php index 318c1a216b9e..c638963ec6ab 100644 --- a/database/migrations/2014_10_13_000000_create_users_table.php +++ b/database/migrations/2014_10_13_000000_create_users_table.php @@ -296,6 +296,11 @@ class CreateUsersTable extends Migration $table->string('shipping_state')->nullable(); $table->string('shipping_postal_code')->nullable(); $table->unsignedInteger('shipping_country_id')->nullable(); + $table->decimal('latitude', 11, 8)->nullable(); + $table->decimal('longitude', 11, 8)->nullable(); + + $table->decimal('shipping_latitude', 11, 8)->nullable(); + $table->decimal('shipping_longitude', 11, 8)->nullable(); $table->boolean('is_deleted')->default(false); $table->string('payment_terms')->nullable(); //todo type? depends how we are storing this @@ -312,30 +317,6 @@ class CreateUsersTable extends Migration }); - Schema::create('client_locations', function (Blueprint $table) { - $table->increments('id'); - $table->unsignedInteger('client_id')->index(); - $table->string('address1')->nullable(); - $table->string('address2')->nullable(); - $table->string('city')->nullable(); - $table->string('state')->nullable(); - $table->string('postal_code')->nullable(); - $table->unsignedInteger('country_id')->nullable(); - $table->string('phone')->nullable(); - $table->decimal('latitude', 11, 8)->nullable(); - $table->decimal('longitude', 11, 8)->nullable(); - $table->boolean('is_primary_billing')->default(false); - $table->boolean('is_primary_shipping')->default(false); - $table->enum('type', ['billing', 'shipping'])->nullable(); - $table->text('description')->nullable(); - $table->text('private_notes')->nullable(); - - $table->foreign('client_id')->references('id')->on('clients')->onDelete('cascade'); - $table->foreign('country_id')->references('id')->on('countries'); - - - }); - Schema::create('client_contacts', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('company_id')->index(); diff --git a/database/seeds/UsersTableSeeder.php b/database/seeds/UsersTableSeeder.php index 433e3939a4ce..cae3f9d4040a 100644 --- a/database/seeds/UsersTableSeeder.php +++ b/database/seeds/UsersTableSeeder.php @@ -91,15 +91,6 @@ class UsersTableSeeder extends Seeder 'company_id' => $company->id ]); - factory(\App\Models\ClientLocation::class,1)->create([ - 'client_id' => $c->id, - 'is_primary_billing' => 1 - ]); - - factory(\App\Models\ClientLocation::class,10)->create([ - 'client_id' => $c->id, - ]); - }); diff --git a/public/css/ninja.css b/public/css/ninja.css index 00b25c1f61e1..f7e82fd470b9 100644 --- a/public/css/ninja.css +++ b/public/css/ninja.css @@ -1,13 +1,13 @@ @charset "UTF-8"; /*! * CoreUI - Open Source Dashboard UI Kit - * @version v2.1.6 + * @version v2.0.18 * @link https://coreui.io * Copyright (c) 2018 creativeLabs Ɓukasz Holeczek * Licensed under MIT (https://coreui.io/license) */ /*! - * Bootstrap v4.2.1 (https://getbootstrap.com/) + * Bootstrap v4.1.3 (https://getbootstrap.com/) * Copyright 2011-2018 The Bootstrap Authors * Copyright 2011-2018 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @@ -40,7 +40,7 @@ --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } @@ -54,16 +54,22 @@ html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } +@-ms-viewport { + width: device-width; +} + article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 0.875rem; font-weight: 400; line-height: 1.5; @@ -99,7 +105,6 @@ abbr[data-original-title] { text-decoration: underline dotted; cursor: help; border-bottom: 0; - text-decoration-skip-ink: none; } address { @@ -135,6 +140,10 @@ blockquote { margin: 0 0 1rem; } +dfn { + font-style: italic; +} + b, strong { font-weight: bolder; @@ -164,6 +173,7 @@ a { color: #20a8d8; text-decoration: none; background-color: transparent; + -webkit-text-decoration-skip: objects; } a:hover { @@ -197,6 +207,7 @@ pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; + -ms-overflow-style: scrollbar; } figure { @@ -265,7 +276,7 @@ select { } button, -[type="button"], +html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; @@ -330,6 +341,7 @@ progress { -webkit-appearance: none; } +[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } @@ -472,7 +484,7 @@ mark, } .blockquote-footer::before { - content: "\2014\00A0"; + content: "\2014 \00A0"; } .img-fluid { @@ -612,6 +624,7 @@ pre code { .col-xl-auto { position: relative; width: 100%; + min-height: 1px; padding-right: 15px; padding-left: 15px; } @@ -628,7 +641,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-1 { @@ -834,7 +847,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-sm-1 { -ms-flex: 0 0 8.333333%; @@ -1006,7 +1019,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-md-1 { -ms-flex: 0 0 8.333333%; @@ -1178,7 +1191,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-lg-1 { -ms-flex: 0 0 8.333333%; @@ -1350,7 +1363,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-xl-1 { -ms-flex: 0 0 8.333333%; @@ -1576,13 +1589,6 @@ pre code { background-color: #c1e7f4; } -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #8bd2eb; -} - .table-hover .table-primary:hover { background-color: #abdff0; } @@ -1598,13 +1604,6 @@ pre code { background-color: #f0f1f3; } -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #e2e6e8; -} - .table-hover .table-secondary:hover { background-color: #e2e4e8; } @@ -1620,13 +1619,6 @@ pre code { background-color: #cdedd8; } -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #a2ddb7; -} - .table-hover .table-success:hover { background-color: #bae6c9; } @@ -1642,13 +1634,6 @@ pre code { background-color: #d3eef6; } -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #aedfee; -} - .table-hover .table-info:hover { background-color: #bee6f2; } @@ -1664,13 +1649,6 @@ pre code { background-color: #ffeeba; } -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; -} - .table-hover .table-warning:hover { background-color: #ffe8a1; } @@ -1686,13 +1664,6 @@ pre code { background-color: #fdd6d6; } -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #fbb3b2; -} - .table-hover .table-danger:hover { background-color: #fcbebe; } @@ -1708,13 +1679,6 @@ pre code { background-color: #fbfcfc; } -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #f7f9fa; -} - .table-hover .table-light:hover { background-color: #ecf1f1; } @@ -1730,13 +1694,6 @@ pre code { background-color: #c5c6c8; } -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #939699; -} - .table-hover .table-dark:hover { background-color: #b8b9bc; } @@ -1762,7 +1719,7 @@ pre code { } .table .thead-dark th { - color: #fff; + color: #e4e5e6; background-color: #23282c; border-color: #343b41; } @@ -1774,7 +1731,7 @@ pre code { } .table-dark { - color: #fff; + color: #e4e5e6; background-color: #23282c; } @@ -1866,7 +1823,6 @@ pre code { height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; font-size: 0.875rem; - font-weight: 400; line-height: 1.5; color: #5c6873; background-color: #fff; @@ -2083,44 +2039,26 @@ textarea.form-control { border-radius: 0.25rem; } -.was-validated .form-control:valid, .form-control.is-valid { +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { border-color: #4dbd74; - padding-right: 2.0625rem; - background-repeat: no-repeat; - background-position: center right calc(2.0625rem / 4); - background-size: calc(2.0625rem / 2) calc(2.0625rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%234dbd74' 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"); } -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { +.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated +.custom-select:valid:focus, +.custom-select.is-valid:focus { border-color: #4dbd74; box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: 2.0625rem; - background-position: top calc(2.0625rem / 4) right calc(2.0625rem / 4); -} - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #4dbd74; - padding-right: 3.296875rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%234dbd74' 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") no-repeat center right 1.75rem/1.03125rem 1.03125rem; -} - -.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #4dbd74; - box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); -} - -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip, .was-validated +.custom-select:valid ~ .valid-feedback, +.was-validated +.custom-select:valid ~ .valid-tooltip, +.custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip { display: block; } @@ -2146,7 +2084,7 @@ textarea.form-control { } .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #4dbd74; + background-color: #aadfbd; } .was-validated .custom-control-input:valid ~ .valid-feedback, @@ -2156,22 +2094,21 @@ textarea.form-control { } .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #72cb91; background-color: #72cb91; } .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); -} - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #4dbd74; + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { border-color: #4dbd74; } +.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after { + border-color: inherit; +} + .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip { @@ -2179,7 +2116,6 @@ textarea.form-control { } .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #4dbd74; box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } @@ -2206,44 +2142,26 @@ textarea.form-control { border-radius: 0.25rem; } -.was-validated .form-control:invalid, .form-control.is-invalid { +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { border-color: #f86c6b; - padding-right: 2.0625rem; - background-repeat: no-repeat; - background-position: center right calc(2.0625rem / 4); - background-size: calc(2.0625rem / 2) calc(2.0625rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f86c6b' 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"); } -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated +.custom-select:invalid:focus, +.custom-select.is-invalid:focus { border-color: #f86c6b; box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: 2.0625rem; - background-position: top calc(2.0625rem / 4) right calc(2.0625rem / 4); -} - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #f86c6b; - padding-right: 3.296875rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f86c6b' 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") no-repeat center right 1.75rem/1.03125rem 1.03125rem; -} - -.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #f86c6b; - box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); -} - -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip, .was-validated +.custom-select:invalid ~ .invalid-feedback, +.was-validated +.custom-select:invalid ~ .invalid-tooltip, +.custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip { display: block; } @@ -2269,7 +2187,7 @@ textarea.form-control { } .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #f86c6b; + background-color: #fee5e5; } .was-validated .custom-control-input:invalid ~ .invalid-feedback, @@ -2279,22 +2197,21 @@ textarea.form-control { } .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #fa9c9c; background-color: #fa9c9c; } .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); -} - -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #f86c6b; + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { border-color: #f86c6b; } +.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after { + border-color: inherit; +} + .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip { @@ -2302,7 +2219,6 @@ textarea.form-control { } .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #f86c6b; box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } @@ -2382,14 +2298,13 @@ textarea.form-control { .btn { display: inline-block; font-weight: 400; - color: #23282c; text-align: center; + white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; - background-color: transparent; border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 0.875rem; @@ -2404,8 +2319,7 @@ textarea.form-control { } } -.btn:hover { - color: #23282c; +.btn:hover, .btn:focus { text-decoration: none; } @@ -2440,7 +2354,7 @@ fieldset:disabled a.btn { } .btn-primary:focus, .btn-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(65, 181, 222, 0.5); + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } .btn-primary.disabled, .btn-primary:disabled { @@ -2458,7 +2372,7 @@ fieldset:disabled a.btn { .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(65, 181, 222, 0.5); + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } .btn-secondary { @@ -2474,7 +2388,7 @@ fieldset:disabled a.btn { } .btn-secondary:focus, .btn-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(175, 181, 186, 0.5); + box-shadow: 0 0 0 0.2rem rgba(200, 206, 211, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { @@ -2492,7 +2406,7 @@ fieldset:disabled a.btn { .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(175, 181, 186, 0.5); + box-shadow: 0 0 0 0.2rem rgba(200, 206, 211, 0.5); } .btn-success { @@ -2508,7 +2422,7 @@ fieldset:disabled a.btn { } .btn-success:focus, .btn-success.focus { - box-shadow: 0 0 0 0.2rem rgba(104, 199, 137, 0.5); + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } .btn-success.disabled, .btn-success:disabled { @@ -2526,7 +2440,7 @@ fieldset:disabled a.btn { .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(104, 199, 137, 0.5); + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } .btn-info { @@ -2542,7 +2456,7 @@ fieldset:disabled a.btn { } .btn-info:focus, .btn-info.focus { - box-shadow: 0 0 0 0.2rem rgba(89, 171, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } .btn-info.disabled, .btn-info:disabled { @@ -2560,7 +2474,7 @@ fieldset:disabled a.btn { .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(89, 171, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } .btn-warning { @@ -2576,7 +2490,7 @@ fieldset:disabled a.btn { } .btn-warning:focus, .btn-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 13, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } .btn-warning.disabled, .btn-warning:disabled { @@ -2594,7 +2508,7 @@ fieldset:disabled a.btn { .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 13, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } .btn-danger { @@ -2610,7 +2524,7 @@ fieldset:disabled a.btn { } .btn-danger:focus, .btn-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(249, 130, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } .btn-danger.disabled, .btn-danger:disabled { @@ -2628,7 +2542,7 @@ fieldset:disabled a.btn { .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(249, 130, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } .btn-light { @@ -2644,7 +2558,7 @@ fieldset:disabled a.btn { } .btn-light:focus, .btn-light.focus { - box-shadow: 0 0 0 0.2rem rgba(209, 213, 215, 0.5); + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } .btn-light.disabled, .btn-light:disabled { @@ -2662,7 +2576,7 @@ fieldset:disabled a.btn { .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(209, 213, 215, 0.5); + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } .btn-dark { @@ -2678,7 +2592,7 @@ fieldset:disabled a.btn { } .btn-dark:focus, .btn-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(78, 83, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(47, 53, 58, 0.5); } .btn-dark.disabled, .btn-dark:disabled { @@ -2696,11 +2610,13 @@ fieldset:disabled a.btn { .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(78, 83, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(47, 53, 58, 0.5); } .btn-outline-primary { color: #20a8d8; + background-color: transparent; + background-image: none; border-color: #20a8d8; } @@ -2733,6 +2649,8 @@ fieldset:disabled a.btn { .btn-outline-secondary { color: #c8ced3; + background-color: transparent; + background-image: none; border-color: #c8ced3; } @@ -2765,6 +2683,8 @@ fieldset:disabled a.btn { .btn-outline-success { color: #4dbd74; + background-color: transparent; + background-image: none; border-color: #4dbd74; } @@ -2797,6 +2717,8 @@ fieldset:disabled a.btn { .btn-outline-info { color: #63c2de; + background-color: transparent; + background-image: none; border-color: #63c2de; } @@ -2829,6 +2751,8 @@ fieldset:disabled a.btn { .btn-outline-warning { color: #ffc107; + background-color: transparent; + background-image: none; border-color: #ffc107; } @@ -2861,6 +2785,8 @@ fieldset:disabled a.btn { .btn-outline-danger { color: #f86c6b; + background-color: transparent; + background-image: none; border-color: #f86c6b; } @@ -2893,6 +2819,8 @@ fieldset:disabled a.btn { .btn-outline-light { color: #f0f3f5; + background-color: transparent; + background-image: none; border-color: #f0f3f5; } @@ -2925,6 +2853,8 @@ fieldset:disabled a.btn { .btn-outline-dark { color: #2f353a; + background-color: transparent; + background-image: none; border-color: #2f353a; } @@ -2958,15 +2888,19 @@ fieldset:disabled a.btn { .btn-link { font-weight: 400; color: #20a8d8; + background-color: transparent; } .btn-link:hover { color: #167495; text-decoration: underline; + background-color: transparent; + border-color: transparent; } .btn-link:focus, .btn-link.focus { text-decoration: underline; + border-color: transparent; box-shadow: none; } @@ -3044,6 +2978,8 @@ input[type="button"].btn-block { .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3082,67 +3018,6 @@ input[type="button"].btn-block { left: auto; } -@media (min-width: 576px) { - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } -} - .dropup .dropdown-menu { top: auto; bottom: 100%; @@ -3152,6 +3027,8 @@ input[type="button"].btn-block { .dropup .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3175,6 +3052,8 @@ input[type="button"].btn-block { .dropright .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3202,6 +3081,8 @@ input[type="button"].btn-block { .dropleft .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3213,6 +3094,8 @@ input[type="button"].btn-block { .dropleft .dropdown-toggle::before { display: inline-block; + width: 0; + height: 0; margin-right: 0.255em; vertical-align: 0.255em; content: ""; @@ -3254,16 +3137,6 @@ input[type="button"].btn-block { border: 0; } -.dropdown-item:first-child { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.dropdown-item:last-child { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - .dropdown-item:hover, .dropdown-item:focus { color: #181b1e; text-decoration: none; @@ -3278,7 +3151,6 @@ input[type="button"].btn-block { .dropdown-item.disabled, .dropdown-item:disabled { color: #73818f; - pointer-events: none; background-color: transparent; } @@ -3312,8 +3184,8 @@ input[type="button"].btn-block { .btn-group > .btn, .btn-group-vertical > .btn { position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; + -ms-flex: 0 1 auto; + flex: 0 1 auto; } .btn-group > .btn:hover, @@ -3328,6 +3200,17 @@ input[type="button"].btn-block { z-index: 1; } +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.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 { display: -ms-flexbox; display: flex; @@ -3341,9 +3224,8 @@ input[type="button"].btn-block { width: auto; } -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; +.btn-group > .btn:first-child { + margin-left: 0; } .btn-group > .btn:not(:last-child):not(.dropdown-toggle), @@ -3392,14 +3274,17 @@ input[type="button"].btn-block { justify-content: center; } -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { width: 100%; } -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { +.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-top: -1px; + margin-left: 0; } .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), @@ -3440,7 +3325,6 @@ input[type="button"].btn-block { } .input-group > .form-control, -.input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file { position: relative; @@ -3453,9 +3337,6 @@ input[type="button"].btn-block { .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, @@ -3517,11 +3398,6 @@ input[type="button"].btn-block { z-index: 2; } -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} - .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, @@ -3564,45 +3440,30 @@ input[type="button"].btn-block { margin-top: 0; } -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(2.640625rem + 2px); -} - .input-group-lg > .form-control, -.input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn { + height: calc(2.640625rem + 2px); padding: 0.5rem 1rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0.3rem; } -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.648438rem + 2px); -} - .input-group-sm > .form-control, -.input-group-sm > .custom-select, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn { + height: calc(1.648438rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0.2rem; } -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, @@ -3644,22 +3505,16 @@ input[type="button"].btn-block { .custom-control-input:checked ~ .custom-control-label::before { color: #fff; - border-color: #20a8d8; background-color: #20a8d8; } .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #8ad4ee; -} - -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { +.custom-control-input:active ~ .custom-control-label::before { color: #fff; background-color: #b6e4f4; - border-color: #b6e4f4; } .custom-control-input:disabled ~ .custom-control-label { @@ -3673,7 +3528,6 @@ input[type="button"].btn-block { .custom-control-label { position: relative; margin-bottom: 0; - vertical-align: top; } .custom-control-label::before { @@ -3685,8 +3539,11 @@ input[type="button"].btn-block { height: 1rem; pointer-events: none; content: ""; - background-color: #fff; - border: #8f9ba6 solid 1px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #c8ced3; } .custom-control-label::after { @@ -3706,17 +3563,20 @@ input[type="button"].btn-block { border-radius: 0.25rem; } +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; +} + .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%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-label::before { - border-color: #20a8d8; background-color: #20a8d8; } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { @@ -3731,64 +3591,28 @@ input[type="button"].btn-block { border-radius: 50%; } +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; +} + .custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%23fff'/%3E%3C/svg%3E"); } .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(32, 168, 216, 0.5); } -.custom-switch { - padding-left: 2.25rem; -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} - -.custom-switch .custom-control-label::after { - top: calc(0.15625rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #8f9ba6; - border-radius: 0.5rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} - -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(0.75rem); - transform: translateX(0.75rem); -} - -.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(32, 168, 216, 0.5); -} - .custom-select { display: inline-block; width: 100%; height: calc(2.0625rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-weight: 400; line-height: 1.5; color: #5c6873; vertical-align: middle; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - background-color: #fff; + 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='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; border: 1px solid #e4e7ea; border-radius: 0.25rem; -webkit-appearance: none; @@ -3824,18 +3648,16 @@ input[type="button"].btn-block { .custom-select-sm { height: calc(1.648438rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.765625rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; } .custom-select-lg { height: calc(2.640625rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.09375rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; } .custom-file { @@ -3860,6 +3682,10 @@ input[type="button"].btn-block { box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } +.custom-file-input:focus ~ .custom-file-label::after { + border-color: #8ad4ee; +} + .custom-file-input:disabled ~ .custom-file-label { background-color: #e4e7ea; } @@ -3868,10 +3694,6 @@ input[type="button"].btn-block { content: "Browse"; } -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - .custom-file-label { position: absolute; top: 0; @@ -3880,7 +3702,6 @@ input[type="button"].btn-block { z-index: 1; height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; - font-weight: 400; line-height: 1.5; color: #5c6873; background-color: #fff; @@ -3901,14 +3722,13 @@ input[type="button"].btn-block { color: #5c6873; content: "Browse"; background-color: #f0f3f5; - border-left: inherit; + border-left: 1px solid #e4e7ea; border-radius: 0 0.25rem 0.25rem 0; } .custom-range { width: 100%; - height: calc(1rem + 0.4rem); - padding: 0; + padding-left: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; @@ -4042,26 +3862,6 @@ input[type="button"].btn-block { border-radius: 1rem; } -.custom-range:disabled::-webkit-slider-thumb { - background-color: #8f9ba6; -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #8f9ba6; -} - -.custom-range:disabled::-moz-range-track { - cursor: default; -} - -.custom-range:disabled::-ms-thumb { - background-color: #8f9ba6; -} - .custom-control-label::before, .custom-file-label, .custom-select { @@ -4097,8 +3897,6 @@ input[type="button"].btn-block { .nav-link.disabled { color: #73818f; - pointer-events: none; - cursor: default; } .nav-tabs { @@ -4516,7 +4314,7 @@ input[type="button"].btn-block { } .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-light .navbar-text { @@ -4564,7 +4362,7 @@ input[type="button"].btn-block { } .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-dark .navbar-text { @@ -4638,7 +4436,6 @@ input[type="button"].btn-block { .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; - color: inherit; background-color: #f0f3f5; border-bottom: 1px solid #c8ced3; } @@ -4824,16 +4621,12 @@ input[type="button"].btn-block { } } -.accordion .card { - overflow: hidden; -} - -.accordion .card:not(:first-of-type) .card-header:first-child { +.accordion .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; border-radius: 0; } -.accordion .card:not(:first-of-type):not(:last-of-type) { - border-bottom: 0; +.accordion .card:not(:first-of-type) .card-header:first-child { border-radius: 0; } @@ -4848,10 +4641,6 @@ input[type="button"].btn-block { border-top-right-radius: 0; } -.accordion .card .card-header { - margin-bottom: -1px; -} - .breadcrumb { display: -ms-flexbox; display: flex; @@ -4994,10 +4783,6 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -a.badge:hover, a.badge:focus { - text-decoration: none; -} - .badge:empty { display: none; } @@ -5018,8 +4803,9 @@ a.badge:hover, a.badge:focus { background-color: #20a8d8; } -a.badge-primary:hover, a.badge-primary:focus { +.badge-primary[href]:hover, .badge-primary[href]:focus { color: #fff; + text-decoration: none; background-color: #1985ac; } @@ -5028,8 +4814,9 @@ a.badge-primary:hover, a.badge-primary:focus { background-color: #c8ced3; } -a.badge-secondary:hover, a.badge-secondary:focus { +.badge-secondary[href]:hover, .badge-secondary[href]:focus { color: #23282c; + text-decoration: none; background-color: #acb5bc; } @@ -5038,8 +4825,9 @@ a.badge-secondary:hover, a.badge-secondary:focus { background-color: #4dbd74; } -a.badge-success:hover, a.badge-success:focus { +.badge-success[href]:hover, .badge-success[href]:focus { color: #fff; + text-decoration: none; background-color: #3a9d5d; } @@ -5048,8 +4836,9 @@ a.badge-success:hover, a.badge-success:focus { background-color: #63c2de; } -a.badge-info:hover, a.badge-info:focus { +.badge-info[href]:hover, .badge-info[href]:focus { color: #23282c; + text-decoration: none; background-color: #39b2d5; } @@ -5058,8 +4847,9 @@ a.badge-info:hover, a.badge-info:focus { background-color: #ffc107; } -a.badge-warning:hover, a.badge-warning:focus { +.badge-warning[href]:hover, .badge-warning[href]:focus { color: #23282c; + text-decoration: none; background-color: #d39e00; } @@ -5068,8 +4858,9 @@ a.badge-warning:hover, a.badge-warning:focus { background-color: #f86c6b; } -a.badge-danger:hover, a.badge-danger:focus { +.badge-danger[href]:hover, .badge-danger[href]:focus { color: #fff; + text-decoration: none; background-color: #f63c3a; } @@ -5078,8 +4869,9 @@ a.badge-danger:hover, a.badge-danger:focus { background-color: #f0f3f5; } -a.badge-light:hover, a.badge-light:focus { +.badge-light[href]:hover, .badge-light[href]:focus { color: #23282c; + text-decoration: none; background-color: #d1dbe1; } @@ -5088,8 +4880,9 @@ a.badge-light:hover, a.badge-light:focus { background-color: #2f353a; } -a.badge-dark:hover, a.badge-dark:focus { +.badge-dark[href]:hover, .badge-dark[href]:focus { color: #fff; + text-decoration: none; background-color: #181b1e; } @@ -5375,7 +5168,6 @@ a.badge-dark:hover, a.badge-dark:focus { .list-group-item.disabled, .list-group-item:disabled { color: #73818f; - pointer-events: none; background-color: #fff; } @@ -5392,16 +5184,11 @@ a.badge-dark:hover, a.badge-dark:focus { border-radius: 0; } -.list-group-flush .list-group-item:last-child { - margin-bottom: -1px; -} - .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } .list-group-flush:last-child .list-group-item:last-child { - margin-bottom: 0; border-bottom: 0; } @@ -5543,16 +5330,13 @@ a.badge-dark:hover, a.badge-dark:focus { opacity: .5; } -.close:hover { - color: #000; - text-decoration: none; -} - .close:not(:disabled):not(.disabled) { cursor: pointer; } .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + color: #000; + text-decoration: none; opacity: .75; } @@ -5561,59 +5345,6 @@ button.close { background-color: transparent; border: 0; -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -a.close.disabled { - pointer-events: none; -} - -.toast { - max-width: 350px; - overflow: hidden; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0.25rem; - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - -webkit-backdrop-filter: blur(10px); - backdrop-filter: blur(10px); - opacity: 0; -} - -.toast:not(:last-child) { - margin-bottom: 0.75rem; -} - -.toast.showing { - opacity: 1; -} - -.toast.show { - display: block; - opacity: 1; -} - -.toast.hide { - display: none; -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.25rem 0.75rem; - color: #73818f; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); -} - -.toast-body { - padding: 0.75rem; } .modal-open { @@ -5628,11 +5359,11 @@ a.close.disabled { .modal { position: fixed; top: 0; + right: 0; + bottom: 0; left: 0; z-index: 1050; display: none; - width: 100%; - height: 100%; overflow: hidden; outline: 0; } @@ -5648,8 +5379,8 @@ a.close.disabled { transition: -webkit-transform 0.3s ease-out; transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px); + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); } @media screen and (prefers-reduced-motion: reduce) { @@ -5659,8 +5390,8 @@ a.close.disabled { } .modal.show .modal-dialog { - -webkit-transform: none; - transform: none; + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } .modal-dialog-centered { @@ -5695,10 +5426,10 @@ a.close.disabled { .modal-backdrop { position: fixed; top: 0; + right: 0; + bottom: 0; left: 0; z-index: 1040; - width: 100vw; - height: 100vh; background-color: #000; } @@ -5717,14 +5448,14 @@ a.close.disabled { align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; - padding: 1rem 1rem; + padding: 1rem; border-bottom: 1px solid #e4e7ea; border-top-left-radius: 0.3rem; border-top-right-radius: 0.3rem; } .modal-header .close { - padding: 1rem 1rem; + padding: 1rem; margin: -1rem -1rem -1rem auto; } @@ -5749,8 +5480,6 @@ a.close.disabled { justify-content: flex-end; padding: 1rem; border-top: 1px solid #e4e7ea; - border-bottom-right-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } .modal-footer > :not(:first-child) { @@ -5786,24 +5515,17 @@ a.close.disabled { } @media (min-width: 992px) { - .modal-lg, - .modal-xl { + .modal-lg { max-width: 800px; } } -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} - .tooltip { position: absolute; z-index: 1070; display: block; margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; @@ -5916,7 +5638,7 @@ a.close.disabled { z-index: 1060; display: block; max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; @@ -6099,85 +5821,123 @@ a.close.disabled { position: relative; } -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y; -} - .carousel-inner { position: relative; width: 100%; overflow: hidden; } -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - .carousel-item { position: relative; display: none; - float: left; + -ms-flex-align: center; + align-items: center; width: 100%; - margin-right: -100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; - transition: -webkit-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; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } + -webkit-perspective: 1000px; + perspective: 1000px; } .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; } -.carousel-item-next:not(.carousel-item-left), +@media screen and (prefers-reduced-motion: reduce) { + .carousel-item.active, + .carousel-item-next, + .carousel-item-prev { + transition: none; + } +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-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: translateX(100%); transform: translateX(100%); } -.carousel-item-prev:not(.carousel-item-right), +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .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: translateX(-100%); transform: translateX(-100%); } +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + .carousel-fade .carousel-item { opacity: 0; + transition-duration: .6s; transition-property: opacity; - -webkit-transform: none; - transform: none; } .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; opacity: 1; } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { - z-index: 0; opacity: 0; - transition: 0s 0.6s opacity; } -@media screen and (prefers-reduced-motion: reduce) { +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active, +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; + .carousel-fade .active.carousel-item-prev { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } @@ -6186,7 +5946,6 @@ a.close.disabled { position: absolute; top: 0; bottom: 0; - z-index: 1; display: -ms-flexbox; display: flex; -ms-flex-align: center; @@ -6197,14 +5956,6 @@ a.close.disabled { color: #fff; text-align: center; opacity: 0.5; - transition: opacity 0.15s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; - } } .carousel-control-prev:hover, .carousel-control-prev:focus, @@ -6213,7 +5964,7 @@ a.close.disabled { color: #fff; text-decoration: none; outline: 0; - opacity: 0.9; + opacity: .9; } .carousel-control-prev { @@ -6234,17 +5985,17 @@ a.close.disabled { } .carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 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"); + 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='M5.25 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 { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 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"); + 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='M2.75 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: 0; + bottom: 10px; left: 0; z-index: 15; display: -ms-flexbox; @@ -6258,7 +6009,7 @@ a.close.disabled { } .carousel-indicators li { - box-sizing: content-box; + position: relative; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; @@ -6267,22 +6018,31 @@ a.close.disabled { margin-left: 3px; text-indent: -999px; cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; + background-color: rgba(255, 255, 255, 0.5); } -@media screen and (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } +.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 { - opacity: 1; + background-color: #fff; } .carousel-caption { @@ -6297,75 +6057,6 @@ a.close.disabled { text-align: center; } -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border .75s linear infinite; - animation: spinner-border .75s linear infinite; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow .75s linear infinite; - animation: spinner-grow .75s linear infinite; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - .align-baseline { vertical-align: baseline !important; } @@ -6582,10 +6273,6 @@ button.bg-dark:focus { border-radius: 50% !important; } -.rounded-pill { - border-radius: 50rem !important; -} - .rounded-0 { border-radius: 0 !important; } @@ -6829,24 +6516,8 @@ button.bg-dark:focus { padding-top: 56.25%; } -.embed-responsive-3by4::before { - padding-top: 133.333333%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.embed-responsive-21by9::before { - padding-top: 42.857143%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-3by4::before { - padding-top: 133.333333%; +.embed-responsive-4by3::before { + padding-top: 75%; } .embed-responsive-1by1::before { @@ -7639,14 +7310,6 @@ button.bg-dark:focus { } } -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - .position-static { position: static !important; } @@ -7777,22 +7440,6 @@ button.bg-dark:focus { max-height: 100% !important; } -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - .m-0 { margin: 0 !important; } @@ -8081,126 +7728,6 @@ button.bg-dark:focus { padding-left: 3rem !important; } -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - .m-auto { margin: auto !important; } @@ -8454,101 +7981,6 @@ button.bg-dark:focus { .px-sm-5 { padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } .m-sm-auto { margin: auto !important; } @@ -8799,101 +8231,6 @@ button.bg-dark:focus { .px-md-5 { padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } .m-md-auto { margin: auto !important; } @@ -9144,101 +8481,6 @@ button.bg-dark:focus { .px-lg-5 { padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } .m-lg-auto { margin: auto !important; } @@ -9489,101 +8731,6 @@ button.bg-dark:focus { .px-xl-5 { padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } .m-xl-auto { margin: auto !important; } @@ -9613,10 +8760,6 @@ button.bg-dark:focus { text-align: justify !important; } -.text-wrap { - white-space: normal !important; -} - .text-nowrap { white-space: nowrap !important; } @@ -9703,10 +8846,6 @@ button.bg-dark:focus { font-weight: 300 !important; } -.font-weight-lighter { - font-weight: lighter !important; -} - .font-weight-normal { font-weight: 400 !important; } @@ -9715,10 +8854,6 @@ button.bg-dark:focus { font-weight: 700 !important; } -.font-weight-bolder { - font-weight: bolder !important; -} - .font-italic { font-style: italic !important; } @@ -9732,7 +8867,7 @@ button.bg-dark:focus { } a.text-primary:hover, a.text-primary:focus { - color: #167495 !important; + color: #1985ac !important; } .text-secondary { @@ -9740,7 +8875,7 @@ a.text-primary:hover, a.text-primary:focus { } a.text-secondary:hover, a.text-secondary:focus { - color: #9ea8b1 !important; + color: #acb5bc !important; } .text-success { @@ -9748,7 +8883,7 @@ a.text-secondary:hover, a.text-secondary:focus { } a.text-success:hover, a.text-success:focus { - color: #338a52 !important; + color: #3a9d5d !important; } .text-info { @@ -9756,7 +8891,7 @@ a.text-success:hover, a.text-success:focus { } a.text-info:hover, a.text-info:focus { - color: #2ba6ca !important; + color: #39b2d5 !important; } .text-warning { @@ -9764,7 +8899,7 @@ a.text-info:hover, a.text-info:focus { } a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; + color: #d39e00 !important; } .text-danger { @@ -9772,7 +8907,7 @@ a.text-warning:hover, a.text-warning:focus { } a.text-danger:hover, a.text-danger:focus { - color: #f52322 !important; + color: #f63c3a !important; } .text-light { @@ -9780,7 +8915,7 @@ a.text-danger:hover, a.text-danger:focus { } a.text-light:hover, a.text-light:focus { - color: #c2ced6 !important; + color: #d1dbe1 !important; } .text-dark { @@ -9788,7 +8923,7 @@ a.text-light:hover, a.text-light:focus { } a.text-dark:hover, a.text-dark:focus { - color: #0d0e10 !important; + color: #181b1e !important; } .text-body { @@ -9815,14 +8950,6 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -.text-decoration-none { - text-decoration: none !important; -} - -.text-reset { - color: inherit !important; -} - .visible { visibility: visible !important; } @@ -10383,7 +9510,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-facebook:focus, .btn-facebook.focus { - box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5); + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } .btn-facebook.disabled, .btn-facebook:disabled { @@ -10401,7 +9528,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-facebook.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5); + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } .btn-twitter { @@ -10417,7 +9544,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-twitter:focus, .btn-twitter.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 184, 240, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } .btn-twitter.disabled, .btn-twitter:disabled { @@ -10435,7 +9562,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-twitter.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 184, 240, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } .btn-linkedin { @@ -10451,7 +9578,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-linkedin:focus, .btn-linkedin.focus { - box-shadow: 0 0 0 0.2rem rgba(99, 138, 191, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } .btn-linkedin.disabled, .btn-linkedin:disabled { @@ -10469,7 +9596,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, .show > .btn-linkedin.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(99, 138, 191, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } .btn-google-plus { @@ -10485,7 +9612,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-google-plus:focus, .btn-google-plus.focus { - box-shadow: 0 0 0 0.2rem rgba(218, 99, 84, 0.5); + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } .btn-google-plus.disabled, .btn-google-plus:disabled { @@ -10503,7 +9630,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-google-plus:not(:disabled):not(.disabled):active:focus, .btn-google-plus:not(:disabled):not(.disabled).active:focus, .show > .btn-google-plus.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(218, 99, 84, 0.5); + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } .btn-flickr { @@ -10519,7 +9646,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-flickr:focus, .btn-flickr.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 38, 150, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } .btn-flickr.disabled, .btn-flickr:disabled { @@ -10537,7 +9664,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus, .show > .btn-flickr.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 38, 150, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } .btn-tumblr { @@ -10553,7 +9680,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-tumblr:focus, .btn-tumblr.focus { - box-shadow: 0 0 0 0.2rem rgba(81, 106, 131, 0.5); + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } .btn-tumblr.disabled, .btn-tumblr:disabled { @@ -10571,7 +9698,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-tumblr:not(:disabled):not(.disabled):active:focus, .btn-tumblr:not(:disabled):not(.disabled).active:focus, .show > .btn-tumblr.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(81, 106, 131, 0.5); + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } .btn-xing { @@ -10587,7 +9714,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-xing:focus, .btn-xing.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 123, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } .btn-xing.disabled, .btn-xing:disabled { @@ -10605,7 +9732,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-xing:not(:disabled):not(.disabled):active:focus, .btn-xing:not(:disabled):not(.disabled).active:focus, .show > .btn-xing.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 123, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } .btn-github { @@ -10621,7 +9748,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-github:focus, .btn-github.focus { - box-shadow: 0 0 0 0.2rem rgba(94, 150, 205, 0.5); + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } .btn-github.disabled, .btn-github:disabled { @@ -10639,7 +9766,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus, .show > .btn-github.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(94, 150, 205, 0.5); + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } .btn-html5 { @@ -10655,7 +9782,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-html5:focus, .btn-html5.focus { - box-shadow: 0 0 0 0.2rem rgba(231, 105, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } .btn-html5.disabled, .btn-html5:disabled { @@ -10673,7 +9800,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-html5:not(:disabled):not(.disabled):active:focus, .btn-html5:not(:disabled):not(.disabled).active:focus, .show > .btn-html5.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(231, 105, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } .btn-openid { @@ -10689,7 +9816,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-openid:focus, .btn-openid.focus { - box-shadow: 0 0 0 0.2rem rgba(215, 125, 61, 0.5); + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } .btn-openid.disabled, .btn-openid:disabled { @@ -10707,7 +9834,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-openid:not(:disabled):not(.disabled):active:focus, .btn-openid:not(:disabled):not(.disabled).active:focus, .show > .btn-openid.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(215, 125, 61, 0.5); + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } .btn-stack-overflow { @@ -10723,7 +9850,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-stack-overflow:focus, .btn-stack-overflow.focus { - box-shadow: 0 0 0 0.2rem rgba(254, 142, 56, 0.5); + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } .btn-stack-overflow.disabled, .btn-stack-overflow:disabled { @@ -10741,7 +9868,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-stack-overflow:not(:disabled):not(.disabled):active:focus, .btn-stack-overflow:not(:disabled):not(.disabled).active:focus, .show > .btn-stack-overflow.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(254, 142, 56, 0.5); + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } .btn-youtube { @@ -10757,7 +9884,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-youtube:focus, .btn-youtube.focus { - box-shadow: 0 0 0 0.2rem rgba(197, 38, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } .btn-youtube.disabled, .btn-youtube:disabled { @@ -10775,7 +9902,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .btn-youtube.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(197, 38, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } .btn-css3 { @@ -10791,7 +9918,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-css3:focus, .btn-css3.focus { - box-shadow: 0 0 0 0.2rem rgba(39, 133, 196, 0.5); + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } .btn-css3.disabled, .btn-css3:disabled { @@ -10809,7 +9936,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-css3:not(:disabled):not(.disabled):active:focus, .btn-css3:not(:disabled):not(.disabled).active:focus, .show > .btn-css3.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(39, 133, 196, 0.5); + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } .btn-dribbble { @@ -10825,7 +9952,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-dribbble:focus, .btn-dribbble.focus { - box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5); + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } .btn-dribbble.disabled, .btn-dribbble:disabled { @@ -10843,7 +9970,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-dribbble:not(:disabled):not(.disabled):active:focus, .btn-dribbble:not(:disabled):not(.disabled).active:focus, .show > .btn-dribbble.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5); + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } .btn-instagram { @@ -10859,7 +9986,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-instagram:focus, .btn-instagram.focus { - box-shadow: 0 0 0 0.2rem rgba(107, 146, 178, 0.5); + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } .btn-instagram.disabled, .btn-instagram:disabled { @@ -10877,7 +10004,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .btn-instagram.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(107, 146, 178, 0.5); + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } .btn-pinterest { @@ -10893,7 +10020,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-pinterest:focus, .btn-pinterest.focus { - box-shadow: 0 0 0 0.2rem rgba(211, 65, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } .btn-pinterest.disabled, .btn-pinterest:disabled { @@ -10911,7 +10038,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, .show > .btn-pinterest.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(211, 65, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } .btn-vk { @@ -10927,7 +10054,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vk:focus, .btn-vk.focus { - box-shadow: 0 0 0 0.2rem rgba(97, 125, 159, 0.5); + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } .btn-vk.disabled, .btn-vk:disabled { @@ -10945,7 +10072,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-vk:not(:disabled):not(.disabled):active:focus, .btn-vk:not(:disabled):not(.disabled).active:focus, .show > .btn-vk.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(97, 125, 159, 0.5); + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } .btn-yahoo { @@ -10961,7 +10088,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-yahoo:focus, .btn-yahoo.focus { - box-shadow: 0 0 0 0.2rem rgba(93, 39, 162, 0.5); + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } .btn-yahoo.disabled, .btn-yahoo:disabled { @@ -10979,7 +10106,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-yahoo:not(:disabled):not(.disabled):active:focus, .btn-yahoo:not(:disabled):not(.disabled).active:focus, .show > .btn-yahoo.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(93, 39, 162, 0.5); + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } .btn-behance { @@ -10995,7 +10122,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-behance:focus, .btn-behance.focus { - box-shadow: 0 0 0 0.2rem rgba(58, 128, 255, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } .btn-behance.disabled, .btn-behance:disabled { @@ -11013,7 +10140,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-behance:not(:disabled):not(.disabled):active:focus, .btn-behance:not(:disabled):not(.disabled).active:focus, .show > .btn-behance.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 128, 255, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } .btn-dropbox { @@ -11029,7 +10156,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-dropbox:focus, .btn-dropbox.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 145, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } .btn-dropbox.disabled, .btn-dropbox:disabled { @@ -11047,7 +10174,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-dropbox:not(:disabled):not(.disabled):active:focus, .btn-dropbox:not(:disabled):not(.disabled).active:focus, .show > .btn-dropbox.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 145, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } .btn-reddit { @@ -11063,7 +10190,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-reddit:focus, .btn-reddit.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 97, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } .btn-reddit.disabled, .btn-reddit:disabled { @@ -11081,7 +10208,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-reddit:not(:disabled):not(.disabled):active:focus, .btn-reddit:not(:disabled):not(.disabled).active:focus, .show > .btn-reddit.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 97, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } .btn-spotify { @@ -11097,7 +10224,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-spotify:focus, .btn-spotify.focus { - box-shadow: 0 0 0 0.2rem rgba(142, 195, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } .btn-spotify.disabled, .btn-spotify:disabled { @@ -11115,7 +10242,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-spotify:not(:disabled):not(.disabled):active:focus, .btn-spotify:not(:disabled):not(.disabled).active:focus, .show > .btn-spotify.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(142, 195, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } .btn-vine { @@ -11131,7 +10258,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vine:focus, .btn-vine.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 201, 160, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } .btn-vine.disabled, .btn-vine:disabled { @@ -11149,7 +10276,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-vine:not(:disabled):not(.disabled):active:focus, .btn-vine:not(:disabled):not(.disabled).active:focus, .show > .btn-vine.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 201, 160, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } .btn-foursquare { @@ -11165,7 +10292,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-foursquare:focus, .btn-foursquare.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 136, 187, 0.5); + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } .btn-foursquare.disabled, .btn-foursquare:disabled { @@ -11183,7 +10310,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-foursquare:not(:disabled):not(.disabled):active:focus, .btn-foursquare:not(:disabled):not(.disabled).active:focus, .show > .btn-foursquare.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 136, 187, 0.5); + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } .btn-vimeo { @@ -11199,7 +10326,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vimeo:focus, .btn-vimeo.focus { - box-shadow: 0 0 0 0.2rem rgba(150, 186, 75, 0.5); + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); } .btn-vimeo.disabled, .btn-vimeo:disabled { @@ -11217,7 +10344,11 @@ a.text-dark:hover, a.text-dark:focus { .btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus, .show > .btn-vimeo.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(150, 186, 75, 0.5); + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); +} + +button { + cursor: pointer; } .btn-transparent { @@ -12568,28 +11699,6 @@ canvas { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); } -.sidebar .nav-link.disabled { - color: #b3b3b3; - cursor: default; - background: transparent; -} - -.sidebar .nav-link.disabled .nav-icon { - color: #73818f; -} - -.sidebar .nav-link.disabled:hover { - color: #b3b3b3; -} - -.sidebar .nav-link.disabled:hover .nav-icon { - color: #73818f; -} - -.sidebar .nav-link.disabled:hover.nav-dropdown-toggle::before { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); -} - .sidebar .nav-link.nav-link-primary { background: #20a8d8; } @@ -12757,19 +11866,6 @@ canvas { border-left: 0; } -.sidebar .nav-dropdown.open .nav-link.disabled { - color: #b3b3b3; - background: transparent; -} - -.sidebar .nav-dropdown.open .nav-link.disabled:hover { - color: #b3b3b3; -} - -.sidebar .nav-dropdown.open .nav-link.disabled:hover .nav-icon { - color: #73818f; -} - .sidebar .nav-dropdown.open > .nav-dropdown-toggle::before { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); @@ -12814,7 +11910,6 @@ canvas { position: relative; -ms-flex: 0 0 50px; flex: 0 0 50px; - cursor: pointer; background-color: rgba(0, 0, 0, 0.2); border: 0; } @@ -12927,19 +12022,6 @@ canvas { .sidebar-minimized .sidebar .nav-item:hover > .nav-link .nav-icon { color: #fff; } - .sidebar-minimized .sidebar .nav-item:hover .nav-link.disabled, - .sidebar-minimized .sidebar .nav-item:hover .nav-link :disabled { - background: #2f353a; - } - .sidebar-minimized .sidebar .nav-item:hover .nav-link.disabled .nav-icon, - .sidebar-minimized .sidebar .nav-item:hover .nav-link :disabled .nav-icon { - color: #73818f; - } - .sidebar-minimized .sidebar section :not(.nav-dropdown-items) > .nav-item:last-child::after { - display: block; - margin-bottom: 50px; - content: ""; - } .sidebar-minimized .sidebar .nav-link { position: relative; padding-left: 0; @@ -12987,43 +12069,6 @@ canvas { left: 50px; display: inline; } - *[dir="rtl"] .sidebar-minimized .sidebar .nav { - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav .divider { - height: 0; - } - *[dir="rtl"] .sidebar-minimized .sidebar .sidebar-minimizer::before { - width: 100%; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link { - padding-right: 0; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .nav-icon { - float: right; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .badge { - right: auto; - left: 15px; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link:hover .badge { - display: inline; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown > .nav-dropdown-items { - display: none; - max-height: 1000px; - background: #2f353a; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown:hover { - background: #20a8d8; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown:hover > .nav-dropdown-items { - position: absolute; - left: 0; - display: inline; - } } *[dir="rtl"] .sidebar .nav-dropdown-toggle::before { @@ -13054,12 +12099,41 @@ canvas { } *[dir="rtl"] .sidebar .sidebar-minimizer::before { - right: auto; + right: unset; left: 0; -webkit-transform: rotate(180deg); transform: rotate(180deg); } +*[dir="rtl"] .sidebar-minimized .sidebar .nav { + list-style-type: disc; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link { + padding-right: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link .nav-icon { + float: right; + padding: 0; + margin: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link .badge { + right: auto; + left: 15px; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-dropdown:hover > .nav-dropdown-items { + right: 50px; + left: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .sidebar-minimizer::before { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); +} + *[dir="rtl"] .sidebar-toggler { margin-right: 0 !important; } @@ -13764,26 +12838,94 @@ html[dir="rtl"] .aside-menu { z-index: 1017; } -html:not([dir="rtl"]) .sidebar-show .sidebar, html:not([dir="rtl"]) .sidebar-show .sidebar { margin-left: 0; } -html:not([dir="rtl"]) .aside-menu-show .aside-menu, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + margin-left: 200px; +} + +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; +} + +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + left: 200px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; +} + html:not([dir="rtl"]) .aside-menu-show .aside-menu { margin-right: 0; } -html[dir="rtl"] .sidebar-show .sidebar, +html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, +html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer { + margin-right: 250px; +} + +html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb { + right: 250px; +} + html[dir="rtl"] .sidebar-show .sidebar { margin-right: 0; } -html[dir="rtl"] .aside-menu-show .aside-menu, +html[dir="rtl"] .sidebar-show.sidebar-fixed .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + margin-right: 200px; +} + +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; +} + +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + right: 200px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; +} + html[dir="rtl"] .aside-menu-show .aside-menu { margin-left: 0; } +html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, +html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer { + margin-left: 250px; +} + +html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb { + left: 250px; +} + @-webkit-keyframes opacity { 0% { opacity: 0; @@ -13823,99 +12965,71 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } @media (min-width: 576px) { - html:not([dir="rtl"]) .sidebar-sm-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-sm-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-left: 200px; + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-sm-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-sm-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-sm-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-right: 200px; + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-sm-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -13937,100 +13051,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 576px) and (max-width: 575.98px) { + .sidebar-sm-show .main, + .aside-menu-sm-show .main { + position: relative; + } + .sidebar-sm-show .main::before, + .aside-menu-sm-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 768px) { - html:not([dir="rtl"]) .sidebar-md-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-md-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-left: 200px; + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-md-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-md-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-md-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-md-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-md-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-right: 200px; + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-md-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-md-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14052,100 +13158,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 768px) and (max-width: 575.98px) { + .sidebar-md-show .main, + .aside-menu-md-show .main { + position: relative; + } + .sidebar-md-show .main::before, + .aside-menu-md-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 992px) { - html:not([dir="rtl"]) .sidebar-lg-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-lg-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-lg-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-lg-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-lg-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { margin-right: 50px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-lg-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14167,100 +13265,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 992px) and (max-width: 575.98px) { + .sidebar-lg-show .main, + .aside-menu-lg-show .main { + position: relative; + } + .sidebar-lg-show .main::before, + .aside-menu-lg-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 1200px) { - html:not([dir="rtl"]) .sidebar-xl-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-xl-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-xl-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-xl-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-xl-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { margin-right: 50px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-xl-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14282,6 +13372,26 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 1200px) and (max-width: 575.98px) { + .sidebar-xl-show .main, + .aside-menu-xl-show .main { + position: relative; + } + .sidebar-xl-show .main::before, + .aside-menu-xl-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + .footer-fixed .app-footer { position: fixed; right: 0; diff --git a/public/css/ninja.min.css b/public/css/ninja.min.css index 00b25c1f61e1..f7e82fd470b9 100644 --- a/public/css/ninja.min.css +++ b/public/css/ninja.min.css @@ -1,13 +1,13 @@ @charset "UTF-8"; /*! * CoreUI - Open Source Dashboard UI Kit - * @version v2.1.6 + * @version v2.0.18 * @link https://coreui.io * Copyright (c) 2018 creativeLabs Ɓukasz Holeczek * Licensed under MIT (https://coreui.io/license) */ /*! - * Bootstrap v4.2.1 (https://getbootstrap.com/) + * Bootstrap v4.1.3 (https://getbootstrap.com/) * Copyright 2011-2018 The Bootstrap Authors * Copyright 2011-2018 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @@ -40,7 +40,7 @@ --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } @@ -54,16 +54,22 @@ html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } +@-ms-viewport { + width: device-width; +} + article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 0.875rem; font-weight: 400; line-height: 1.5; @@ -99,7 +105,6 @@ abbr[data-original-title] { text-decoration: underline dotted; cursor: help; border-bottom: 0; - text-decoration-skip-ink: none; } address { @@ -135,6 +140,10 @@ blockquote { margin: 0 0 1rem; } +dfn { + font-style: italic; +} + b, strong { font-weight: bolder; @@ -164,6 +173,7 @@ a { color: #20a8d8; text-decoration: none; background-color: transparent; + -webkit-text-decoration-skip: objects; } a:hover { @@ -197,6 +207,7 @@ pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; + -ms-overflow-style: scrollbar; } figure { @@ -265,7 +276,7 @@ select { } button, -[type="button"], +html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; @@ -330,6 +341,7 @@ progress { -webkit-appearance: none; } +[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } @@ -472,7 +484,7 @@ mark, } .blockquote-footer::before { - content: "\2014\00A0"; + content: "\2014 \00A0"; } .img-fluid { @@ -612,6 +624,7 @@ pre code { .col-xl-auto { position: relative; width: 100%; + min-height: 1px; padding-right: 15px; padding-left: 15px; } @@ -628,7 +641,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-1 { @@ -834,7 +847,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-sm-1 { -ms-flex: 0 0 8.333333%; @@ -1006,7 +1019,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-md-1 { -ms-flex: 0 0 8.333333%; @@ -1178,7 +1191,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-lg-1 { -ms-flex: 0 0 8.333333%; @@ -1350,7 +1363,7 @@ pre code { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; - max-width: 100%; + max-width: none; } .col-xl-1 { -ms-flex: 0 0 8.333333%; @@ -1576,13 +1589,6 @@ pre code { background-color: #c1e7f4; } -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #8bd2eb; -} - .table-hover .table-primary:hover { background-color: #abdff0; } @@ -1598,13 +1604,6 @@ pre code { background-color: #f0f1f3; } -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #e2e6e8; -} - .table-hover .table-secondary:hover { background-color: #e2e4e8; } @@ -1620,13 +1619,6 @@ pre code { background-color: #cdedd8; } -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #a2ddb7; -} - .table-hover .table-success:hover { background-color: #bae6c9; } @@ -1642,13 +1634,6 @@ pre code { background-color: #d3eef6; } -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #aedfee; -} - .table-hover .table-info:hover { background-color: #bee6f2; } @@ -1664,13 +1649,6 @@ pre code { background-color: #ffeeba; } -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; -} - .table-hover .table-warning:hover { background-color: #ffe8a1; } @@ -1686,13 +1664,6 @@ pre code { background-color: #fdd6d6; } -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #fbb3b2; -} - .table-hover .table-danger:hover { background-color: #fcbebe; } @@ -1708,13 +1679,6 @@ pre code { background-color: #fbfcfc; } -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #f7f9fa; -} - .table-hover .table-light:hover { background-color: #ecf1f1; } @@ -1730,13 +1694,6 @@ pre code { background-color: #c5c6c8; } -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #939699; -} - .table-hover .table-dark:hover { background-color: #b8b9bc; } @@ -1762,7 +1719,7 @@ pre code { } .table .thead-dark th { - color: #fff; + color: #e4e5e6; background-color: #23282c; border-color: #343b41; } @@ -1774,7 +1731,7 @@ pre code { } .table-dark { - color: #fff; + color: #e4e5e6; background-color: #23282c; } @@ -1866,7 +1823,6 @@ pre code { height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; font-size: 0.875rem; - font-weight: 400; line-height: 1.5; color: #5c6873; background-color: #fff; @@ -2083,44 +2039,26 @@ textarea.form-control { border-radius: 0.25rem; } -.was-validated .form-control:valid, .form-control.is-valid { +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { border-color: #4dbd74; - padding-right: 2.0625rem; - background-repeat: no-repeat; - background-position: center right calc(2.0625rem / 4); - background-size: calc(2.0625rem / 2) calc(2.0625rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%234dbd74' 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"); } -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { +.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated +.custom-select:valid:focus, +.custom-select.is-valid:focus { border-color: #4dbd74; box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: 2.0625rem; - background-position: top calc(2.0625rem / 4) right calc(2.0625rem / 4); -} - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #4dbd74; - padding-right: 3.296875rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%234dbd74' 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") no-repeat center right 1.75rem/1.03125rem 1.03125rem; -} - -.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #4dbd74; - box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); -} - -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip, .was-validated +.custom-select:valid ~ .valid-feedback, +.was-validated +.custom-select:valid ~ .valid-tooltip, +.custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip { display: block; } @@ -2146,7 +2084,7 @@ textarea.form-control { } .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #4dbd74; + background-color: #aadfbd; } .was-validated .custom-control-input:valid ~ .valid-feedback, @@ -2156,22 +2094,21 @@ textarea.form-control { } .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #72cb91; background-color: #72cb91; } .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); -} - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #4dbd74; + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { border-color: #4dbd74; } +.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after { + border-color: inherit; +} + .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip { @@ -2179,7 +2116,6 @@ textarea.form-control { } .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #4dbd74; box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } @@ -2206,44 +2142,26 @@ textarea.form-control { border-radius: 0.25rem; } -.was-validated .form-control:invalid, .form-control.is-invalid { +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { border-color: #f86c6b; - padding-right: 2.0625rem; - background-repeat: no-repeat; - background-position: center right calc(2.0625rem / 4); - background-size: calc(2.0625rem / 2) calc(2.0625rem / 2); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f86c6b' 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"); } -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated +.custom-select:invalid:focus, +.custom-select.is-invalid:focus { border-color: #f86c6b; box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: 2.0625rem; - background-position: top calc(2.0625rem / 4) right calc(2.0625rem / 4); -} - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #f86c6b; - padding-right: 3.296875rem; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f86c6b' 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") no-repeat center right 1.75rem/1.03125rem 1.03125rem; -} - -.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #f86c6b; - box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); -} - -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip, .was-validated +.custom-select:invalid ~ .invalid-feedback, +.was-validated +.custom-select:invalid ~ .invalid-tooltip, +.custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip { display: block; } @@ -2269,7 +2187,7 @@ textarea.form-control { } .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #f86c6b; + background-color: #fee5e5; } .was-validated .custom-control-input:invalid ~ .invalid-feedback, @@ -2279,22 +2197,21 @@ textarea.form-control { } .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #fa9c9c; background-color: #fa9c9c; } .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); -} - -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #f86c6b; + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { border-color: #f86c6b; } +.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after { + border-color: inherit; +} + .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip { @@ -2302,7 +2219,6 @@ textarea.form-control { } .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #f86c6b; box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } @@ -2382,14 +2298,13 @@ textarea.form-control { .btn { display: inline-block; font-weight: 400; - color: #23282c; text-align: center; + white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; - background-color: transparent; border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 0.875rem; @@ -2404,8 +2319,7 @@ textarea.form-control { } } -.btn:hover { - color: #23282c; +.btn:hover, .btn:focus { text-decoration: none; } @@ -2440,7 +2354,7 @@ fieldset:disabled a.btn { } .btn-primary:focus, .btn-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(65, 181, 222, 0.5); + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } .btn-primary.disabled, .btn-primary:disabled { @@ -2458,7 +2372,7 @@ fieldset:disabled a.btn { .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(65, 181, 222, 0.5); + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } .btn-secondary { @@ -2474,7 +2388,7 @@ fieldset:disabled a.btn { } .btn-secondary:focus, .btn-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(175, 181, 186, 0.5); + box-shadow: 0 0 0 0.2rem rgba(200, 206, 211, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { @@ -2492,7 +2406,7 @@ fieldset:disabled a.btn { .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(175, 181, 186, 0.5); + box-shadow: 0 0 0 0.2rem rgba(200, 206, 211, 0.5); } .btn-success { @@ -2508,7 +2422,7 @@ fieldset:disabled a.btn { } .btn-success:focus, .btn-success.focus { - box-shadow: 0 0 0 0.2rem rgba(104, 199, 137, 0.5); + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } .btn-success.disabled, .btn-success:disabled { @@ -2526,7 +2440,7 @@ fieldset:disabled a.btn { .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(104, 199, 137, 0.5); + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } .btn-info { @@ -2542,7 +2456,7 @@ fieldset:disabled a.btn { } .btn-info:focus, .btn-info.focus { - box-shadow: 0 0 0 0.2rem rgba(89, 171, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } .btn-info.disabled, .btn-info:disabled { @@ -2560,7 +2474,7 @@ fieldset:disabled a.btn { .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(89, 171, 195, 0.5); + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } .btn-warning { @@ -2576,7 +2490,7 @@ fieldset:disabled a.btn { } .btn-warning:focus, .btn-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 13, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } .btn-warning.disabled, .btn-warning:disabled { @@ -2594,7 +2508,7 @@ fieldset:disabled a.btn { .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 13, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } .btn-danger { @@ -2610,7 +2524,7 @@ fieldset:disabled a.btn { } .btn-danger:focus, .btn-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(249, 130, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } .btn-danger.disabled, .btn-danger:disabled { @@ -2628,7 +2542,7 @@ fieldset:disabled a.btn { .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(249, 130, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } .btn-light { @@ -2644,7 +2558,7 @@ fieldset:disabled a.btn { } .btn-light:focus, .btn-light.focus { - box-shadow: 0 0 0 0.2rem rgba(209, 213, 215, 0.5); + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } .btn-light.disabled, .btn-light:disabled { @@ -2662,7 +2576,7 @@ fieldset:disabled a.btn { .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(209, 213, 215, 0.5); + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } .btn-dark { @@ -2678,7 +2592,7 @@ fieldset:disabled a.btn { } .btn-dark:focus, .btn-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(78, 83, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(47, 53, 58, 0.5); } .btn-dark.disabled, .btn-dark:disabled { @@ -2696,11 +2610,13 @@ fieldset:disabled a.btn { .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(78, 83, 88, 0.5); + box-shadow: 0 0 0 0.2rem rgba(47, 53, 58, 0.5); } .btn-outline-primary { color: #20a8d8; + background-color: transparent; + background-image: none; border-color: #20a8d8; } @@ -2733,6 +2649,8 @@ fieldset:disabled a.btn { .btn-outline-secondary { color: #c8ced3; + background-color: transparent; + background-image: none; border-color: #c8ced3; } @@ -2765,6 +2683,8 @@ fieldset:disabled a.btn { .btn-outline-success { color: #4dbd74; + background-color: transparent; + background-image: none; border-color: #4dbd74; } @@ -2797,6 +2717,8 @@ fieldset:disabled a.btn { .btn-outline-info { color: #63c2de; + background-color: transparent; + background-image: none; border-color: #63c2de; } @@ -2829,6 +2751,8 @@ fieldset:disabled a.btn { .btn-outline-warning { color: #ffc107; + background-color: transparent; + background-image: none; border-color: #ffc107; } @@ -2861,6 +2785,8 @@ fieldset:disabled a.btn { .btn-outline-danger { color: #f86c6b; + background-color: transparent; + background-image: none; border-color: #f86c6b; } @@ -2893,6 +2819,8 @@ fieldset:disabled a.btn { .btn-outline-light { color: #f0f3f5; + background-color: transparent; + background-image: none; border-color: #f0f3f5; } @@ -2925,6 +2853,8 @@ fieldset:disabled a.btn { .btn-outline-dark { color: #2f353a; + background-color: transparent; + background-image: none; border-color: #2f353a; } @@ -2958,15 +2888,19 @@ fieldset:disabled a.btn { .btn-link { font-weight: 400; color: #20a8d8; + background-color: transparent; } .btn-link:hover { color: #167495; text-decoration: underline; + background-color: transparent; + border-color: transparent; } .btn-link:focus, .btn-link.focus { text-decoration: underline; + border-color: transparent; box-shadow: none; } @@ -3044,6 +2978,8 @@ input[type="button"].btn-block { .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3082,67 +3018,6 @@ input[type="button"].btn-block { left: auto; } -@media (min-width: 576px) { - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } -} - .dropup .dropdown-menu { top: auto; bottom: 100%; @@ -3152,6 +3027,8 @@ input[type="button"].btn-block { .dropup .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3175,6 +3052,8 @@ input[type="button"].btn-block { .dropright .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3202,6 +3081,8 @@ input[type="button"].btn-block { .dropleft .dropdown-toggle::after { display: inline-block; + width: 0; + height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; @@ -3213,6 +3094,8 @@ input[type="button"].btn-block { .dropleft .dropdown-toggle::before { display: inline-block; + width: 0; + height: 0; margin-right: 0.255em; vertical-align: 0.255em; content: ""; @@ -3254,16 +3137,6 @@ input[type="button"].btn-block { border: 0; } -.dropdown-item:first-child { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.dropdown-item:last-child { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - .dropdown-item:hover, .dropdown-item:focus { color: #181b1e; text-decoration: none; @@ -3278,7 +3151,6 @@ input[type="button"].btn-block { .dropdown-item.disabled, .dropdown-item:disabled { color: #73818f; - pointer-events: none; background-color: transparent; } @@ -3312,8 +3184,8 @@ input[type="button"].btn-block { .btn-group > .btn, .btn-group-vertical > .btn { position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; + -ms-flex: 0 1 auto; + flex: 0 1 auto; } .btn-group > .btn:hover, @@ -3328,6 +3200,17 @@ input[type="button"].btn-block { z-index: 1; } +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.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 { display: -ms-flexbox; display: flex; @@ -3341,9 +3224,8 @@ input[type="button"].btn-block { width: auto; } -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; +.btn-group > .btn:first-child { + margin-left: 0; } .btn-group > .btn:not(:last-child):not(.dropdown-toggle), @@ -3392,14 +3274,17 @@ input[type="button"].btn-block { justify-content: center; } -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { width: 100%; } -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { +.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-top: -1px; + margin-left: 0; } .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), @@ -3440,7 +3325,6 @@ input[type="button"].btn-block { } .input-group > .form-control, -.input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file { position: relative; @@ -3453,9 +3337,6 @@ input[type="button"].btn-block { .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, @@ -3517,11 +3398,6 @@ input[type="button"].btn-block { z-index: 2; } -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} - .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, @@ -3564,45 +3440,30 @@ input[type="button"].btn-block { margin-top: 0; } -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(2.640625rem + 2px); -} - .input-group-lg > .form-control, -.input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn { + height: calc(2.640625rem + 2px); padding: 0.5rem 1rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0.3rem; } -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.648438rem + 2px); -} - .input-group-sm > .form-control, -.input-group-sm > .custom-select, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn { + height: calc(1.648438rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0.2rem; } -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, @@ -3644,22 +3505,16 @@ input[type="button"].btn-block { .custom-control-input:checked ~ .custom-control-label::before { color: #fff; - border-color: #20a8d8; background-color: #20a8d8; } .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #8ad4ee; -} - -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { +.custom-control-input:active ~ .custom-control-label::before { color: #fff; background-color: #b6e4f4; - border-color: #b6e4f4; } .custom-control-input:disabled ~ .custom-control-label { @@ -3673,7 +3528,6 @@ input[type="button"].btn-block { .custom-control-label { position: relative; margin-bottom: 0; - vertical-align: top; } .custom-control-label::before { @@ -3685,8 +3539,11 @@ input[type="button"].btn-block { height: 1rem; pointer-events: none; content: ""; - background-color: #fff; - border: #8f9ba6 solid 1px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #c8ced3; } .custom-control-label::after { @@ -3706,17 +3563,20 @@ input[type="button"].btn-block { border-radius: 0.25rem; } +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; +} + .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%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-label::before { - border-color: #20a8d8; background-color: #20a8d8; } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { @@ -3731,64 +3591,28 @@ input[type="button"].btn-block { border-radius: 50%; } +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; +} + .custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%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='%23fff'/%3E%3C/svg%3E"); } .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(32, 168, 216, 0.5); } -.custom-switch { - padding-left: 2.25rem; -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} - -.custom-switch .custom-control-label::after { - top: calc(0.15625rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #8f9ba6; - border-radius: 0.5rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; -} - -@media screen and (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} - -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(0.75rem); - transform: translateX(0.75rem); -} - -.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(32, 168, 216, 0.5); -} - .custom-select { display: inline-block; width: 100%; height: calc(2.0625rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-weight: 400; line-height: 1.5; color: #5c6873; vertical-align: middle; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - background-color: #fff; + 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='%232f353a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; border: 1px solid #e4e7ea; border-radius: 0.25rem; -webkit-appearance: none; @@ -3824,18 +3648,16 @@ input[type="button"].btn-block { .custom-select-sm { height: calc(1.648438rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.765625rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; } .custom-select-lg { height: calc(2.640625rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.09375rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; } .custom-file { @@ -3860,6 +3682,10 @@ input[type="button"].btn-block { box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } +.custom-file-input:focus ~ .custom-file-label::after { + border-color: #8ad4ee; +} + .custom-file-input:disabled ~ .custom-file-label { background-color: #e4e7ea; } @@ -3868,10 +3694,6 @@ input[type="button"].btn-block { content: "Browse"; } -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - .custom-file-label { position: absolute; top: 0; @@ -3880,7 +3702,6 @@ input[type="button"].btn-block { z-index: 1; height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; - font-weight: 400; line-height: 1.5; color: #5c6873; background-color: #fff; @@ -3901,14 +3722,13 @@ input[type="button"].btn-block { color: #5c6873; content: "Browse"; background-color: #f0f3f5; - border-left: inherit; + border-left: 1px solid #e4e7ea; border-radius: 0 0.25rem 0.25rem 0; } .custom-range { width: 100%; - height: calc(1rem + 0.4rem); - padding: 0; + padding-left: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; @@ -4042,26 +3862,6 @@ input[type="button"].btn-block { border-radius: 1rem; } -.custom-range:disabled::-webkit-slider-thumb { - background-color: #8f9ba6; -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #8f9ba6; -} - -.custom-range:disabled::-moz-range-track { - cursor: default; -} - -.custom-range:disabled::-ms-thumb { - background-color: #8f9ba6; -} - .custom-control-label::before, .custom-file-label, .custom-select { @@ -4097,8 +3897,6 @@ input[type="button"].btn-block { .nav-link.disabled { color: #73818f; - pointer-events: none; - cursor: default; } .nav-tabs { @@ -4516,7 +4314,7 @@ input[type="button"].btn-block { } .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-light .navbar-text { @@ -4564,7 +4362,7 @@ input[type="button"].btn-block { } .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 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 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-dark .navbar-text { @@ -4638,7 +4436,6 @@ input[type="button"].btn-block { .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; - color: inherit; background-color: #f0f3f5; border-bottom: 1px solid #c8ced3; } @@ -4824,16 +4621,12 @@ input[type="button"].btn-block { } } -.accordion .card { - overflow: hidden; -} - -.accordion .card:not(:first-of-type) .card-header:first-child { +.accordion .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; border-radius: 0; } -.accordion .card:not(:first-of-type):not(:last-of-type) { - border-bottom: 0; +.accordion .card:not(:first-of-type) .card-header:first-child { border-radius: 0; } @@ -4848,10 +4641,6 @@ input[type="button"].btn-block { border-top-right-radius: 0; } -.accordion .card .card-header { - margin-bottom: -1px; -} - .breadcrumb { display: -ms-flexbox; display: flex; @@ -4994,10 +4783,6 @@ input[type="button"].btn-block { border-radius: 0.25rem; } -a.badge:hover, a.badge:focus { - text-decoration: none; -} - .badge:empty { display: none; } @@ -5018,8 +4803,9 @@ a.badge:hover, a.badge:focus { background-color: #20a8d8; } -a.badge-primary:hover, a.badge-primary:focus { +.badge-primary[href]:hover, .badge-primary[href]:focus { color: #fff; + text-decoration: none; background-color: #1985ac; } @@ -5028,8 +4814,9 @@ a.badge-primary:hover, a.badge-primary:focus { background-color: #c8ced3; } -a.badge-secondary:hover, a.badge-secondary:focus { +.badge-secondary[href]:hover, .badge-secondary[href]:focus { color: #23282c; + text-decoration: none; background-color: #acb5bc; } @@ -5038,8 +4825,9 @@ a.badge-secondary:hover, a.badge-secondary:focus { background-color: #4dbd74; } -a.badge-success:hover, a.badge-success:focus { +.badge-success[href]:hover, .badge-success[href]:focus { color: #fff; + text-decoration: none; background-color: #3a9d5d; } @@ -5048,8 +4836,9 @@ a.badge-success:hover, a.badge-success:focus { background-color: #63c2de; } -a.badge-info:hover, a.badge-info:focus { +.badge-info[href]:hover, .badge-info[href]:focus { color: #23282c; + text-decoration: none; background-color: #39b2d5; } @@ -5058,8 +4847,9 @@ a.badge-info:hover, a.badge-info:focus { background-color: #ffc107; } -a.badge-warning:hover, a.badge-warning:focus { +.badge-warning[href]:hover, .badge-warning[href]:focus { color: #23282c; + text-decoration: none; background-color: #d39e00; } @@ -5068,8 +4858,9 @@ a.badge-warning:hover, a.badge-warning:focus { background-color: #f86c6b; } -a.badge-danger:hover, a.badge-danger:focus { +.badge-danger[href]:hover, .badge-danger[href]:focus { color: #fff; + text-decoration: none; background-color: #f63c3a; } @@ -5078,8 +4869,9 @@ a.badge-danger:hover, a.badge-danger:focus { background-color: #f0f3f5; } -a.badge-light:hover, a.badge-light:focus { +.badge-light[href]:hover, .badge-light[href]:focus { color: #23282c; + text-decoration: none; background-color: #d1dbe1; } @@ -5088,8 +4880,9 @@ a.badge-light:hover, a.badge-light:focus { background-color: #2f353a; } -a.badge-dark:hover, a.badge-dark:focus { +.badge-dark[href]:hover, .badge-dark[href]:focus { color: #fff; + text-decoration: none; background-color: #181b1e; } @@ -5375,7 +5168,6 @@ a.badge-dark:hover, a.badge-dark:focus { .list-group-item.disabled, .list-group-item:disabled { color: #73818f; - pointer-events: none; background-color: #fff; } @@ -5392,16 +5184,11 @@ a.badge-dark:hover, a.badge-dark:focus { border-radius: 0; } -.list-group-flush .list-group-item:last-child { - margin-bottom: -1px; -} - .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } .list-group-flush:last-child .list-group-item:last-child { - margin-bottom: 0; border-bottom: 0; } @@ -5543,16 +5330,13 @@ a.badge-dark:hover, a.badge-dark:focus { opacity: .5; } -.close:hover { - color: #000; - text-decoration: none; -} - .close:not(:disabled):not(.disabled) { cursor: pointer; } .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + color: #000; + text-decoration: none; opacity: .75; } @@ -5561,59 +5345,6 @@ button.close { background-color: transparent; border: 0; -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -a.close.disabled { - pointer-events: none; -} - -.toast { - max-width: 350px; - overflow: hidden; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0.25rem; - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - -webkit-backdrop-filter: blur(10px); - backdrop-filter: blur(10px); - opacity: 0; -} - -.toast:not(:last-child) { - margin-bottom: 0.75rem; -} - -.toast.showing { - opacity: 1; -} - -.toast.show { - display: block; - opacity: 1; -} - -.toast.hide { - display: none; -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.25rem 0.75rem; - color: #73818f; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); -} - -.toast-body { - padding: 0.75rem; } .modal-open { @@ -5628,11 +5359,11 @@ a.close.disabled { .modal { position: fixed; top: 0; + right: 0; + bottom: 0; left: 0; z-index: 1050; display: none; - width: 100%; - height: 100%; overflow: hidden; outline: 0; } @@ -5648,8 +5379,8 @@ a.close.disabled { transition: -webkit-transform 0.3s ease-out; transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px); + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); } @media screen and (prefers-reduced-motion: reduce) { @@ -5659,8 +5390,8 @@ a.close.disabled { } .modal.show .modal-dialog { - -webkit-transform: none; - transform: none; + -webkit-transform: translate(0, 0); + transform: translate(0, 0); } .modal-dialog-centered { @@ -5695,10 +5426,10 @@ a.close.disabled { .modal-backdrop { position: fixed; top: 0; + right: 0; + bottom: 0; left: 0; z-index: 1040; - width: 100vw; - height: 100vh; background-color: #000; } @@ -5717,14 +5448,14 @@ a.close.disabled { align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; - padding: 1rem 1rem; + padding: 1rem; border-bottom: 1px solid #e4e7ea; border-top-left-radius: 0.3rem; border-top-right-radius: 0.3rem; } .modal-header .close { - padding: 1rem 1rem; + padding: 1rem; margin: -1rem -1rem -1rem auto; } @@ -5749,8 +5480,6 @@ a.close.disabled { justify-content: flex-end; padding: 1rem; border-top: 1px solid #e4e7ea; - border-bottom-right-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; } .modal-footer > :not(:first-child) { @@ -5786,24 +5515,17 @@ a.close.disabled { } @media (min-width: 992px) { - .modal-lg, - .modal-xl { + .modal-lg { max-width: 800px; } } -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} - .tooltip { position: absolute; z-index: 1070; display: block; margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; @@ -5916,7 +5638,7 @@ a.close.disabled { z-index: 1060; display: block; max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; @@ -6099,85 +5821,123 @@ a.close.disabled { position: relative; } -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y; -} - .carousel-inner { position: relative; width: 100%; overflow: hidden; } -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - .carousel-item { position: relative; display: none; - float: left; + -ms-flex-align: center; + align-items: center; width: 100%; - margin-right: -100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; - transition: -webkit-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; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } + -webkit-perspective: 1000px; + perspective: 1000px; } .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; } -.carousel-item-next:not(.carousel-item-left), +@media screen and (prefers-reduced-motion: reduce) { + .carousel-item.active, + .carousel-item-next, + .carousel-item-prev { + transition: none; + } +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-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: translateX(100%); transform: translateX(100%); } -.carousel-item-prev:not(.carousel-item-right), +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .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: translateX(-100%); transform: translateX(-100%); } +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + .carousel-fade .carousel-item { opacity: 0; + transition-duration: .6s; transition-property: opacity; - -webkit-transform: none; - transform: none; } .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; opacity: 1; } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { - z-index: 0; opacity: 0; - transition: 0s 0.6s opacity; } -@media screen and (prefers-reduced-motion: reduce) { +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active, +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; + .carousel-fade .active.carousel-item-prev { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); } } @@ -6186,7 +5946,6 @@ a.close.disabled { position: absolute; top: 0; bottom: 0; - z-index: 1; display: -ms-flexbox; display: flex; -ms-flex-align: center; @@ -6197,14 +5956,6 @@ a.close.disabled { color: #fff; text-align: center; opacity: 0.5; - transition: opacity 0.15s ease; -} - -@media screen and (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; - } } .carousel-control-prev:hover, .carousel-control-prev:focus, @@ -6213,7 +5964,7 @@ a.close.disabled { color: #fff; text-decoration: none; outline: 0; - opacity: 0.9; + opacity: .9; } .carousel-control-prev { @@ -6234,17 +5985,17 @@ a.close.disabled { } .carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 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"); + 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='M5.25 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 { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 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"); + 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='M2.75 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: 0; + bottom: 10px; left: 0; z-index: 15; display: -ms-flexbox; @@ -6258,7 +6009,7 @@ a.close.disabled { } .carousel-indicators li { - box-sizing: content-box; + position: relative; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; @@ -6267,22 +6018,31 @@ a.close.disabled { margin-left: 3px; text-indent: -999px; cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; + background-color: rgba(255, 255, 255, 0.5); } -@media screen and (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } +.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 { - opacity: 1; + background-color: #fff; } .carousel-caption { @@ -6297,75 +6057,6 @@ a.close.disabled { text-align: center; } -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border .75s linear infinite; - animation: spinner-border .75s linear infinite; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow .75s linear infinite; - animation: spinner-grow .75s linear infinite; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - .align-baseline { vertical-align: baseline !important; } @@ -6582,10 +6273,6 @@ button.bg-dark:focus { border-radius: 50% !important; } -.rounded-pill { - border-radius: 50rem !important; -} - .rounded-0 { border-radius: 0 !important; } @@ -6829,24 +6516,8 @@ button.bg-dark:focus { padding-top: 56.25%; } -.embed-responsive-3by4::before { - padding-top: 133.333333%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.embed-responsive-21by9::before { - padding-top: 42.857143%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-3by4::before { - padding-top: 133.333333%; +.embed-responsive-4by3::before { + padding-top: 75%; } .embed-responsive-1by1::before { @@ -7639,14 +7310,6 @@ button.bg-dark:focus { } } -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - .position-static { position: static !important; } @@ -7777,22 +7440,6 @@ button.bg-dark:focus { max-height: 100% !important; } -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - .m-0 { margin: 0 !important; } @@ -8081,126 +7728,6 @@ button.bg-dark:focus { padding-left: 3rem !important; } -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - .m-auto { margin: auto !important; } @@ -8454,101 +7981,6 @@ button.bg-dark:focus { .px-sm-5 { padding-left: 3rem !important; } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } .m-sm-auto { margin: auto !important; } @@ -8799,101 +8231,6 @@ button.bg-dark:focus { .px-md-5 { padding-left: 3rem !important; } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } .m-md-auto { margin: auto !important; } @@ -9144,101 +8481,6 @@ button.bg-dark:focus { .px-lg-5 { padding-left: 3rem !important; } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } .m-lg-auto { margin: auto !important; } @@ -9489,101 +8731,6 @@ button.bg-dark:focus { .px-xl-5 { padding-left: 3rem !important; } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } .m-xl-auto { margin: auto !important; } @@ -9613,10 +8760,6 @@ button.bg-dark:focus { text-align: justify !important; } -.text-wrap { - white-space: normal !important; -} - .text-nowrap { white-space: nowrap !important; } @@ -9703,10 +8846,6 @@ button.bg-dark:focus { font-weight: 300 !important; } -.font-weight-lighter { - font-weight: lighter !important; -} - .font-weight-normal { font-weight: 400 !important; } @@ -9715,10 +8854,6 @@ button.bg-dark:focus { font-weight: 700 !important; } -.font-weight-bolder { - font-weight: bolder !important; -} - .font-italic { font-style: italic !important; } @@ -9732,7 +8867,7 @@ button.bg-dark:focus { } a.text-primary:hover, a.text-primary:focus { - color: #167495 !important; + color: #1985ac !important; } .text-secondary { @@ -9740,7 +8875,7 @@ a.text-primary:hover, a.text-primary:focus { } a.text-secondary:hover, a.text-secondary:focus { - color: #9ea8b1 !important; + color: #acb5bc !important; } .text-success { @@ -9748,7 +8883,7 @@ a.text-secondary:hover, a.text-secondary:focus { } a.text-success:hover, a.text-success:focus { - color: #338a52 !important; + color: #3a9d5d !important; } .text-info { @@ -9756,7 +8891,7 @@ a.text-success:hover, a.text-success:focus { } a.text-info:hover, a.text-info:focus { - color: #2ba6ca !important; + color: #39b2d5 !important; } .text-warning { @@ -9764,7 +8899,7 @@ a.text-info:hover, a.text-info:focus { } a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; + color: #d39e00 !important; } .text-danger { @@ -9772,7 +8907,7 @@ a.text-warning:hover, a.text-warning:focus { } a.text-danger:hover, a.text-danger:focus { - color: #f52322 !important; + color: #f63c3a !important; } .text-light { @@ -9780,7 +8915,7 @@ a.text-danger:hover, a.text-danger:focus { } a.text-light:hover, a.text-light:focus { - color: #c2ced6 !important; + color: #d1dbe1 !important; } .text-dark { @@ -9788,7 +8923,7 @@ a.text-light:hover, a.text-light:focus { } a.text-dark:hover, a.text-dark:focus { - color: #0d0e10 !important; + color: #181b1e !important; } .text-body { @@ -9815,14 +8950,6 @@ a.text-dark:hover, a.text-dark:focus { border: 0; } -.text-decoration-none { - text-decoration: none !important; -} - -.text-reset { - color: inherit !important; -} - .visible { visibility: visible !important; } @@ -10383,7 +9510,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-facebook:focus, .btn-facebook.focus { - box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5); + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } .btn-facebook.disabled, .btn-facebook:disabled { @@ -10401,7 +9528,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-facebook.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5); + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } .btn-twitter { @@ -10417,7 +9544,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-twitter:focus, .btn-twitter.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 184, 240, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } .btn-twitter.disabled, .btn-twitter:disabled { @@ -10435,7 +9562,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-twitter.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 184, 240, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } .btn-linkedin { @@ -10451,7 +9578,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-linkedin:focus, .btn-linkedin.focus { - box-shadow: 0 0 0 0.2rem rgba(99, 138, 191, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } .btn-linkedin.disabled, .btn-linkedin:disabled { @@ -10469,7 +9596,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, .show > .btn-linkedin.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(99, 138, 191, 0.5); + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } .btn-google-plus { @@ -10485,7 +9612,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-google-plus:focus, .btn-google-plus.focus { - box-shadow: 0 0 0 0.2rem rgba(218, 99, 84, 0.5); + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } .btn-google-plus.disabled, .btn-google-plus:disabled { @@ -10503,7 +9630,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-google-plus:not(:disabled):not(.disabled):active:focus, .btn-google-plus:not(:disabled):not(.disabled).active:focus, .show > .btn-google-plus.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(218, 99, 84, 0.5); + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } .btn-flickr { @@ -10519,7 +9646,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-flickr:focus, .btn-flickr.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 38, 150, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } .btn-flickr.disabled, .btn-flickr:disabled { @@ -10537,7 +9664,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus, .show > .btn-flickr.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 38, 150, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } .btn-tumblr { @@ -10553,7 +9680,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-tumblr:focus, .btn-tumblr.focus { - box-shadow: 0 0 0 0.2rem rgba(81, 106, 131, 0.5); + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } .btn-tumblr.disabled, .btn-tumblr:disabled { @@ -10571,7 +9698,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-tumblr:not(:disabled):not(.disabled):active:focus, .btn-tumblr:not(:disabled):not(.disabled).active:focus, .show > .btn-tumblr.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(81, 106, 131, 0.5); + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } .btn-xing { @@ -10587,7 +9714,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-xing:focus, .btn-xing.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 123, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } .btn-xing.disabled, .btn-xing:disabled { @@ -10605,7 +9732,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-xing:not(:disabled):not(.disabled):active:focus, .btn-xing:not(:disabled):not(.disabled).active:focus, .show > .btn-xing.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 123, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } .btn-github { @@ -10621,7 +9748,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-github:focus, .btn-github.focus { - box-shadow: 0 0 0 0.2rem rgba(94, 150, 205, 0.5); + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } .btn-github.disabled, .btn-github:disabled { @@ -10639,7 +9766,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus, .show > .btn-github.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(94, 150, 205, 0.5); + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } .btn-html5 { @@ -10655,7 +9782,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-html5:focus, .btn-html5.focus { - box-shadow: 0 0 0 0.2rem rgba(231, 105, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } .btn-html5.disabled, .btn-html5:disabled { @@ -10673,7 +9800,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-html5:not(:disabled):not(.disabled):active:focus, .btn-html5:not(:disabled):not(.disabled).active:focus, .show > .btn-html5.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(231, 105, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } .btn-openid { @@ -10689,7 +9816,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-openid:focus, .btn-openid.focus { - box-shadow: 0 0 0 0.2rem rgba(215, 125, 61, 0.5); + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } .btn-openid.disabled, .btn-openid:disabled { @@ -10707,7 +9834,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-openid:not(:disabled):not(.disabled):active:focus, .btn-openid:not(:disabled):not(.disabled).active:focus, .show > .btn-openid.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(215, 125, 61, 0.5); + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } .btn-stack-overflow { @@ -10723,7 +9850,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-stack-overflow:focus, .btn-stack-overflow.focus { - box-shadow: 0 0 0 0.2rem rgba(254, 142, 56, 0.5); + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } .btn-stack-overflow.disabled, .btn-stack-overflow:disabled { @@ -10741,7 +9868,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-stack-overflow:not(:disabled):not(.disabled):active:focus, .btn-stack-overflow:not(:disabled):not(.disabled).active:focus, .show > .btn-stack-overflow.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(254, 142, 56, 0.5); + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } .btn-youtube { @@ -10757,7 +9884,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-youtube:focus, .btn-youtube.focus { - box-shadow: 0 0 0 0.2rem rgba(197, 38, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } .btn-youtube.disabled, .btn-youtube:disabled { @@ -10775,7 +9902,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .btn-youtube.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(197, 38, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } .btn-css3 { @@ -10791,7 +9918,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-css3:focus, .btn-css3.focus { - box-shadow: 0 0 0 0.2rem rgba(39, 133, 196, 0.5); + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } .btn-css3.disabled, .btn-css3:disabled { @@ -10809,7 +9936,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-css3:not(:disabled):not(.disabled):active:focus, .btn-css3:not(:disabled):not(.disabled).active:focus, .show > .btn-css3.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(39, 133, 196, 0.5); + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } .btn-dribbble { @@ -10825,7 +9952,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-dribbble:focus, .btn-dribbble.focus { - box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5); + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } .btn-dribbble.disabled, .btn-dribbble:disabled { @@ -10843,7 +9970,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-dribbble:not(:disabled):not(.disabled):active:focus, .btn-dribbble:not(:disabled):not(.disabled).active:focus, .show > .btn-dribbble.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5); + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } .btn-instagram { @@ -10859,7 +9986,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-instagram:focus, .btn-instagram.focus { - box-shadow: 0 0 0 0.2rem rgba(107, 146, 178, 0.5); + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } .btn-instagram.disabled, .btn-instagram:disabled { @@ -10877,7 +10004,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .btn-instagram.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(107, 146, 178, 0.5); + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } .btn-pinterest { @@ -10893,7 +10020,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-pinterest:focus, .btn-pinterest.focus { - box-shadow: 0 0 0 0.2rem rgba(211, 65, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } .btn-pinterest.disabled, .btn-pinterest:disabled { @@ -10911,7 +10038,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, .show > .btn-pinterest.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(211, 65, 71, 0.5); + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } .btn-vk { @@ -10927,7 +10054,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vk:focus, .btn-vk.focus { - box-shadow: 0 0 0 0.2rem rgba(97, 125, 159, 0.5); + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } .btn-vk.disabled, .btn-vk:disabled { @@ -10945,7 +10072,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-vk:not(:disabled):not(.disabled):active:focus, .btn-vk:not(:disabled):not(.disabled).active:focus, .show > .btn-vk.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(97, 125, 159, 0.5); + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } .btn-yahoo { @@ -10961,7 +10088,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-yahoo:focus, .btn-yahoo.focus { - box-shadow: 0 0 0 0.2rem rgba(93, 39, 162, 0.5); + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } .btn-yahoo.disabled, .btn-yahoo:disabled { @@ -10979,7 +10106,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-yahoo:not(:disabled):not(.disabled):active:focus, .btn-yahoo:not(:disabled):not(.disabled).active:focus, .show > .btn-yahoo.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(93, 39, 162, 0.5); + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } .btn-behance { @@ -10995,7 +10122,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-behance:focus, .btn-behance.focus { - box-shadow: 0 0 0 0.2rem rgba(58, 128, 255, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } .btn-behance.disabled, .btn-behance:disabled { @@ -11013,7 +10140,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-behance:not(:disabled):not(.disabled):active:focus, .btn-behance:not(:disabled):not(.disabled).active:focus, .show > .btn-behance.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 128, 255, 0.5); + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } .btn-dropbox { @@ -11029,7 +10156,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-dropbox:focus, .btn-dropbox.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 145, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } .btn-dropbox.disabled, .btn-dropbox:disabled { @@ -11047,7 +10174,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-dropbox:not(:disabled):not(.disabled):active:focus, .btn-dropbox:not(:disabled):not(.disabled).active:focus, .show > .btn-dropbox.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 145, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } .btn-reddit { @@ -11063,7 +10190,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-reddit:focus, .btn-reddit.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 97, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } .btn-reddit.disabled, .btn-reddit:disabled { @@ -11081,7 +10208,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-reddit:not(:disabled):not(.disabled):active:focus, .btn-reddit:not(:disabled):not(.disabled).active:focus, .show > .btn-reddit.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 97, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } .btn-spotify { @@ -11097,7 +10224,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-spotify:focus, .btn-spotify.focus { - box-shadow: 0 0 0 0.2rem rgba(142, 195, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } .btn-spotify.disabled, .btn-spotify:disabled { @@ -11115,7 +10242,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-spotify:not(:disabled):not(.disabled):active:focus, .btn-spotify:not(:disabled):not(.disabled).active:focus, .show > .btn-spotify.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(142, 195, 38, 0.5); + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } .btn-vine { @@ -11131,7 +10258,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vine:focus, .btn-vine.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 201, 160, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } .btn-vine.disabled, .btn-vine:disabled { @@ -11149,7 +10276,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-vine:not(:disabled):not(.disabled):active:focus, .btn-vine:not(:disabled):not(.disabled).active:focus, .show > .btn-vine.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 201, 160, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } .btn-foursquare { @@ -11165,7 +10292,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-foursquare:focus, .btn-foursquare.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 136, 187, 0.5); + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } .btn-foursquare.disabled, .btn-foursquare:disabled { @@ -11183,7 +10310,7 @@ a.text-dark:hover, a.text-dark:focus { .btn-foursquare:not(:disabled):not(.disabled):active:focus, .btn-foursquare:not(:disabled):not(.disabled).active:focus, .show > .btn-foursquare.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 136, 187, 0.5); + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } .btn-vimeo { @@ -11199,7 +10326,7 @@ a.text-dark:hover, a.text-dark:focus { } .btn-vimeo:focus, .btn-vimeo.focus { - box-shadow: 0 0 0 0.2rem rgba(150, 186, 75, 0.5); + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); } .btn-vimeo.disabled, .btn-vimeo:disabled { @@ -11217,7 +10344,11 @@ a.text-dark:hover, a.text-dark:focus { .btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus, .show > .btn-vimeo.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(150, 186, 75, 0.5); + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); +} + +button { + cursor: pointer; } .btn-transparent { @@ -12568,28 +11699,6 @@ canvas { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); } -.sidebar .nav-link.disabled { - color: #b3b3b3; - cursor: default; - background: transparent; -} - -.sidebar .nav-link.disabled .nav-icon { - color: #73818f; -} - -.sidebar .nav-link.disabled:hover { - color: #b3b3b3; -} - -.sidebar .nav-link.disabled:hover .nav-icon { - color: #73818f; -} - -.sidebar .nav-link.disabled:hover.nav-dropdown-toggle::before { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); -} - .sidebar .nav-link.nav-link-primary { background: #20a8d8; } @@ -12757,19 +11866,6 @@ canvas { border-left: 0; } -.sidebar .nav-dropdown.open .nav-link.disabled { - color: #b3b3b3; - background: transparent; -} - -.sidebar .nav-dropdown.open .nav-link.disabled:hover { - color: #b3b3b3; -} - -.sidebar .nav-dropdown.open .nav-link.disabled:hover .nav-icon { - color: #73818f; -} - .sidebar .nav-dropdown.open > .nav-dropdown-toggle::before { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); @@ -12814,7 +11910,6 @@ canvas { position: relative; -ms-flex: 0 0 50px; flex: 0 0 50px; - cursor: pointer; background-color: rgba(0, 0, 0, 0.2); border: 0; } @@ -12927,19 +12022,6 @@ canvas { .sidebar-minimized .sidebar .nav-item:hover > .nav-link .nav-icon { color: #fff; } - .sidebar-minimized .sidebar .nav-item:hover .nav-link.disabled, - .sidebar-minimized .sidebar .nav-item:hover .nav-link :disabled { - background: #2f353a; - } - .sidebar-minimized .sidebar .nav-item:hover .nav-link.disabled .nav-icon, - .sidebar-minimized .sidebar .nav-item:hover .nav-link :disabled .nav-icon { - color: #73818f; - } - .sidebar-minimized .sidebar section :not(.nav-dropdown-items) > .nav-item:last-child::after { - display: block; - margin-bottom: 50px; - content: ""; - } .sidebar-minimized .sidebar .nav-link { position: relative; padding-left: 0; @@ -12987,43 +12069,6 @@ canvas { left: 50px; display: inline; } - *[dir="rtl"] .sidebar-minimized .sidebar .nav { - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav .divider { - height: 0; - } - *[dir="rtl"] .sidebar-minimized .sidebar .sidebar-minimizer::before { - width: 100%; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link { - padding-right: 0; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .nav-icon { - float: right; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .badge { - right: auto; - left: 15px; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav-link:hover .badge { - display: inline; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown > .nav-dropdown-items { - display: none; - max-height: 1000px; - background: #2f353a; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown:hover { - background: #20a8d8; - } - *[dir="rtl"] .sidebar-minimized .sidebar .nav > .nav-dropdown:hover > .nav-dropdown-items { - position: absolute; - left: 0; - display: inline; - } } *[dir="rtl"] .sidebar .nav-dropdown-toggle::before { @@ -13054,12 +12099,41 @@ canvas { } *[dir="rtl"] .sidebar .sidebar-minimizer::before { - right: auto; + right: unset; left: 0; -webkit-transform: rotate(180deg); transform: rotate(180deg); } +*[dir="rtl"] .sidebar-minimized .sidebar .nav { + list-style-type: disc; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link { + padding-right: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link .nav-icon { + float: right; + padding: 0; + margin: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link .badge { + right: auto; + left: 15px; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-dropdown:hover > .nav-dropdown-items { + right: 50px; + left: 0; +} + +*[dir="rtl"] .sidebar-minimized .sidebar .sidebar-minimizer::before { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); +} + *[dir="rtl"] .sidebar-toggler { margin-right: 0 !important; } @@ -13764,26 +12838,94 @@ html[dir="rtl"] .aside-menu { z-index: 1017; } -html:not([dir="rtl"]) .sidebar-show .sidebar, html:not([dir="rtl"]) .sidebar-show .sidebar { margin-left: 0; } -html:not([dir="rtl"]) .aside-menu-show .aside-menu, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + margin-left: 200px; +} + +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; +} + +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, +html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + left: 200px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; +} + +html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; +} + html:not([dir="rtl"]) .aside-menu-show .aside-menu { margin-right: 0; } -html[dir="rtl"] .sidebar-show .sidebar, +html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, +html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer { + margin-right: 250px; +} + +html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb { + right: 250px; +} + html[dir="rtl"] .sidebar-show .sidebar { margin-right: 0; } -html[dir="rtl"] .aside-menu-show .aside-menu, +html[dir="rtl"] .sidebar-show.sidebar-fixed .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + margin-right: 200px; +} + +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; +} + +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, +html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + right: 200px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; +} + +html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; +} + html[dir="rtl"] .aside-menu-show .aside-menu { margin-left: 0; } +html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, +html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer { + margin-left: 250px; +} + +html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb { + left: 250px; +} + @-webkit-keyframes opacity { 0% { opacity: 0; @@ -13823,99 +12965,71 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } @media (min-width: 576px) { - html:not([dir="rtl"]) .sidebar-sm-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-sm-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-left: 200px; + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-sm-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-sm-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-sm-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-right: 200px; + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-sm-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -13937,100 +13051,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 576px) and (max-width: 575.98px) { + .sidebar-sm-show .main, + .aside-menu-sm-show .main { + position: relative; + } + .sidebar-sm-show .main::before, + .aside-menu-sm-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 768px) { - html:not([dir="rtl"]) .sidebar-md-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-md-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-left: 200px; + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-md-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-md-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-md-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-md-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-md-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { - margin-right: 200px; + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-md-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-md-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14052,100 +13158,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 768px) and (max-width: 575.98px) { + .sidebar-md-show .main, + .aside-menu-md-show .main { + position: relative; + } + .sidebar-md-show .main::before, + .aside-menu-md-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 992px) { - html:not([dir="rtl"]) .sidebar-lg-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-lg-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-lg-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-lg-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-lg-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { margin-right: 50px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-lg-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14167,100 +13265,92 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 992px) and (max-width: 575.98px) { + .sidebar-lg-show .main, + .aside-menu-lg-show .main { + position: relative; + } + .sidebar-lg-show .main::before, + .aside-menu-lg-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + @media (min-width: 1200px) { - html:not([dir="rtl"]) .sidebar-xl-show .sidebar, - html:not([dir="rtl"]) .sidebar-show .sidebar { + html:not([dir="rtl"]) .sidebar-xl-show .sidebar { margin-left: 0; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .app-footer { margin-left: 200px; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { margin-left: 150px; } html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { margin-left: 50px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed .breadcrumb { left: 200px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { left: 150px; } - html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { left: 50px; } - html:not([dir="rtl"]) .aside-menu-show .aside-menu, html:not([dir="rtl"]) .aside-menu-xl-show .aside-menu { margin-right: 0; } - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, - html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer, html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .main, html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .app-footer { margin-right: 250px; } - html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb, html:not([dir="rtl"]) .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { right: 250px; } - html[dir="rtl"] .sidebar-xl-show .sidebar, - html[dir="rtl"] .sidebar-show .sidebar { + html[dir="rtl"] .sidebar-xl-show .sidebar { margin-right: 0; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .app-footer { margin-right: 200px; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { margin-right: 150px; } html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, - html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { margin-right: 50px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed .breadcrumb { right: 200px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { right: 150px; } - html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb, - html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { right: 50px; } - html[dir="rtl"] .aside-menu-show .aside-menu, html[dir="rtl"] .aside-menu-xl-show .aside-menu { margin-left: 0; } - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, - html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer, html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .main, html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .app-footer { margin-left: 250px; } - html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb, html[dir="rtl"] .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { left: 250px; } @@ -14282,6 +13372,26 @@ html[dir="rtl"] .aside-menu-show .aside-menu { } } +@media (min-width: 1200px) and (max-width: 575.98px) { + .sidebar-xl-show .main, + .aside-menu-xl-show .main { + position: relative; + } + .sidebar-xl-show .main::before, + .aside-menu-xl-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + -webkit-animation: opacity 0.25s; + animation: opacity 0.25s; + } +} + .footer-fixed .app-footer { position: fixed; right: 0; diff --git a/resources/js/src/models/client-model.ts b/resources/js/src/models/client-model.ts index 5415436cbe4d..a6b4f0743e17 100644 --- a/resources/js/src/models/client-model.ts +++ b/resources/js/src/models/client-model.ts @@ -18,6 +18,10 @@ export default class Client { state: string postal_code: string country_id: number + latitude: number + longitude: number + shipping_latitude: number + shipping_longitude: number custom_value1: string custom_value2: string shipping_address1: string