mirror of https://github.com/snachodog/mybuddy.git
Update NPM dependencies
This commit is contained in:
parent
7fdc358533
commit
efa52d14f7
File diff suppressed because it is too large
Load Diff
16
package.json
16
package.json
|
@ -7,29 +7,29 @@
|
|||
"url": "https://github.com/babybuddy/babybuddy.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bootstrap": "4.4.1",
|
||||
"bootstrap": "4.5.0",
|
||||
"del": "^5.1.0",
|
||||
"font-awesome": "^4.7.0",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-csso": "^4.0.1",
|
||||
"gulp-flatten": "^0.4.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-spawn": "^0.4.5",
|
||||
"gulp-stylelint": "^13.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"jquery": "^3.4.1",
|
||||
"moment": "^2.24.0",
|
||||
"moment-timezone": "^0.5.28",
|
||||
"plotly.js": "^1.52.3",
|
||||
"jquery": "^3.5.1",
|
||||
"moment": "^2.25.3",
|
||||
"moment-timezone": "^0.5.30",
|
||||
"plotly.js": "^1.54.1",
|
||||
"popper.js": "^1.16.1",
|
||||
"pulltorefreshjs": "^0.1.20",
|
||||
"pump": "^3.0.0",
|
||||
"stylelint": "^13.2.1",
|
||||
"stylelint": "^13.4.0",
|
||||
"stylelint-config-recommended-scss": "^4.2.0",
|
||||
"stylelint-order": "^4.0.0",
|
||||
"stylelint-scss": "^3.14.2",
|
||||
"stylelint-scss": "^3.17.2",
|
||||
"tempusdominus-bootstrap-4": "^5.1.2",
|
||||
"tempusdominus-core": "^5.0.3"
|
||||
},
|
||||
|
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
|||
@charset "UTF-8";
|
||||
/*!
|
||||
* Bootstrap v4.4.1 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2019 The Bootstrap Authors
|
||||
* Copyright 2011-2019 Twitter, Inc.
|
||||
* Bootstrap v4.5.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2020 The Bootstrap Authors
|
||||
* Copyright 2011-2020 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
:root {
|
||||
|
@ -157,7 +157,8 @@ samp {
|
|||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto; }
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar; }
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem; }
|
||||
|
@ -212,6 +213,9 @@ button,
|
|||
select {
|
||||
text-transform: none; }
|
||||
|
||||
[role="button"] {
|
||||
cursor: pointer; }
|
||||
|
||||
select {
|
||||
word-wrap: normal; }
|
||||
|
||||
|
@ -239,12 +243,6 @@ input[type="checkbox"] {
|
|||
box-sizing: border-box;
|
||||
padding: 0; }
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox; }
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical; }
|
||||
|
@ -513,6 +511,7 @@ pre {
|
|||
.col {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
|
||||
.row-cols-1 > * {
|
||||
|
@ -674,6 +673,7 @@ pre {
|
|||
.col-sm {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-sm-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -792,6 +792,7 @@ pre {
|
|||
.col-md {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-md-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -910,6 +911,7 @@ pre {
|
|||
.col-lg {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-lg-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -1028,6 +1030,7 @@ pre {
|
|||
.col-xl {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-xl-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -1469,6 +1472,12 @@ pre {
|
|||
background-color: #6c757d;
|
||||
opacity: 1; }
|
||||
|
||||
input[type="date"].form-control,
|
||||
input[type="time"].form-control,
|
||||
input[type="datetime-local"].form-control,
|
||||
input[type="month"].form-control {
|
||||
appearance: none; }
|
||||
|
||||
select.form-control:focus::-ms-value {
|
||||
color: #000;
|
||||
background-color: #fff; }
|
||||
|
@ -1787,7 +1796,6 @@ textarea.form-control {
|
|||
color: #ced4da;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
background-color: transparent;
|
||||
border: 1px solid transparent;
|
||||
|
@ -1807,6 +1815,8 @@ textarea.form-control {
|
|||
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
|
||||
.btn.disabled, .btn:disabled {
|
||||
opacity: 0.65; }
|
||||
.btn:not(:disabled):not(.disabled) {
|
||||
cursor: pointer; }
|
||||
|
||||
a.btn.disabled,
|
||||
fieldset:disabled a.btn {
|
||||
|
@ -2290,8 +2300,7 @@ fieldset:disabled a.btn {
|
|||
color: #0e778d;
|
||||
text-decoration: underline; }
|
||||
.btn-link:focus, .btn-link.focus {
|
||||
text-decoration: underline;
|
||||
box-shadow: none; }
|
||||
text-decoration: underline; }
|
||||
.btn-link:disabled, .btn-link.disabled {
|
||||
color: #6c757d;
|
||||
pointer-events: none; }
|
||||
|
@ -2639,7 +2648,8 @@ input[type="button"].btn-block {
|
|||
.input-group > .custom-select,
|
||||
.input-group > .custom-file {
|
||||
position: relative;
|
||||
flex: 1 1 0%;
|
||||
flex: 1 1 auto;
|
||||
width: 1%;
|
||||
min-width: 0;
|
||||
margin-bottom: 0; }
|
||||
.input-group > .form-control + .form-control,
|
||||
|
@ -3382,7 +3392,7 @@ input[type="button"].btn-block {
|
|||
border-color: rgba(0, 0, 0, 0.1); }
|
||||
|
||||
.navbar-light .navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
|
||||
.navbar-light .navbar-text {
|
||||
color: rgba(0, 0, 0, 0.5); }
|
||||
|
@ -3414,7 +3424,7 @@ input[type="button"].btn-block {
|
|||
border-color: rgba(255, 255, 255, 0.1); }
|
||||
|
||||
.navbar-dark .navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
|
||||
.navbar-dark .navbar-text {
|
||||
color: rgba(255, 255, 255, 0.5); }
|
||||
|
@ -3436,12 +3446,17 @@ input[type="button"].btn-block {
|
|||
.card > hr {
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
.card > .list-group:first-child .list-group-item:first-child {
|
||||
border-top-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0.25rem; }
|
||||
.card > .list-group:last-child .list-group-item:last-child {
|
||||
border-bottom-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0.25rem; }
|
||||
.card > .list-group {
|
||||
border-top: inherit;
|
||||
border-bottom: inherit; }
|
||||
.card > .list-group:first-child {
|
||||
border-top-width: 0;
|
||||
border-top-left-radius: calc(0.25rem - 1px);
|
||||
border-top-right-radius: calc(0.25rem - 1px); }
|
||||
.card > .list-group:last-child {
|
||||
border-bottom-width: 0;
|
||||
border-bottom-right-radius: calc(0.25rem - 1px);
|
||||
border-bottom-left-radius: calc(0.25rem - 1px); }
|
||||
|
||||
.card-body {
|
||||
flex: 1 1 auto;
|
||||
|
@ -3597,6 +3612,8 @@ input[type="button"].btn-block {
|
|||
background-color: none;
|
||||
border-radius: 0.25rem; }
|
||||
|
||||
.breadcrumb-item {
|
||||
display: flex; }
|
||||
.breadcrumb-item + .breadcrumb-item {
|
||||
padding-left: 0.5rem; }
|
||||
.breadcrumb-item + .breadcrumb-item::before {
|
||||
|
@ -3604,13 +3621,10 @@ input[type="button"].btn-block {
|
|||
padding-right: 0.5rem;
|
||||
color: #6c757d;
|
||||
content: "/"; }
|
||||
|
||||
.breadcrumb-item + .breadcrumb-item:hover::before {
|
||||
text-decoration: underline; }
|
||||
|
||||
.breadcrumb-item + .breadcrumb-item:hover::before {
|
||||
text-decoration: none; }
|
||||
|
||||
.breadcrumb-item.active {
|
||||
color: #6c757d; }
|
||||
|
||||
|
@ -3952,6 +3966,7 @@ input[type="button"].btn-block {
|
|||
display: flex;
|
||||
height: 1rem;
|
||||
overflow: hidden;
|
||||
line-height: 0;
|
||||
font-size: 0.75rem;
|
||||
background-color: #6c757d;
|
||||
border-radius: 0.25rem; }
|
||||
|
@ -3991,7 +4006,8 @@ input[type="button"].btn-block {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-left: 0;
|
||||
margin-bottom: 0; }
|
||||
margin-bottom: 0;
|
||||
border-radius: 0.25rem; }
|
||||
|
||||
.list-group-item-action {
|
||||
width: 100%;
|
||||
|
@ -4013,11 +4029,11 @@ input[type="button"].btn-block {
|
|||
background-color: #343a40;
|
||||
border: 1px solid rgba(0, 0, 0, 0.125); }
|
||||
.list-group-item:first-child {
|
||||
border-top-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0.25rem; }
|
||||
border-top-left-radius: inherit;
|
||||
border-top-right-radius: inherit; }
|
||||
.list-group-item:last-child {
|
||||
border-bottom-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0.25rem; }
|
||||
border-bottom-right-radius: inherit;
|
||||
border-bottom-left-radius: inherit; }
|
||||
.list-group-item.disabled, .list-group-item:disabled {
|
||||
color: #6c757d;
|
||||
pointer-events: none;
|
||||
|
@ -4035,101 +4051,98 @@ input[type="button"].btn-block {
|
|||
|
||||
.list-group-horizontal {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal .list-group-item:first-child {
|
||||
.list-group-horizontal > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal .list-group-item:last-child {
|
||||
.list-group-horizontal > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal .list-group-item.active {
|
||||
.list-group-horizontal > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal .list-group-item + .list-group-item {
|
||||
.list-group-horizontal > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; }
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.list-group-horizontal-sm {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-sm .list-group-item:first-child {
|
||||
.list-group-horizontal-sm > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-sm .list-group-item:last-child {
|
||||
.list-group-horizontal-sm > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-sm .list-group-item.active {
|
||||
.list-group-horizontal-sm > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-sm .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-sm > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-sm .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.list-group-horizontal-md {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-md .list-group-item:first-child {
|
||||
.list-group-horizontal-md > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-md .list-group-item:last-child {
|
||||
.list-group-horizontal-md > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-md .list-group-item.active {
|
||||
.list-group-horizontal-md > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-md .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-md > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-md .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.list-group-horizontal-lg {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-lg .list-group-item:first-child {
|
||||
.list-group-horizontal-lg > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-lg .list-group-item:last-child {
|
||||
.list-group-horizontal-lg > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-lg .list-group-item.active {
|
||||
.list-group-horizontal-lg > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-lg .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-lg > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-lg .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.list-group-horizontal-xl {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-xl .list-group-item:first-child {
|
||||
.list-group-horizontal-xl > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-xl .list-group-item:last-child {
|
||||
.list-group-horizontal-xl > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-xl .list-group-item.active {
|
||||
.list-group-horizontal-xl > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-xl .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-xl > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-xl .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
.list-group-flush .list-group-item {
|
||||
border-right-width: 0;
|
||||
border-left-width: 0;
|
||||
.list-group-flush {
|
||||
border-radius: 0; }
|
||||
.list-group-flush .list-group-item:first-child {
|
||||
border-top-width: 0; }
|
||||
|
||||
.list-group-flush:last-child .list-group-item:last-child {
|
||||
.list-group-flush > .list-group-item {
|
||||
border-width: 0 0 1px; }
|
||||
.list-group-flush > .list-group-item:last-child {
|
||||
border-bottom-width: 0; }
|
||||
|
||||
.list-group-item-primary {
|
||||
|
@ -4259,8 +4272,7 @@ input[type="button"].btn-block {
|
|||
button.close {
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
appearance: none; }
|
||||
border: 0; }
|
||||
|
||||
a.close.disabled {
|
||||
pointer-events: none; }
|
||||
|
@ -4350,6 +4362,7 @@ a.close.disabled {
|
|||
.modal-dialog-centered::before {
|
||||
display: block;
|
||||
height: calc(100vh - 1rem);
|
||||
height: min-content;
|
||||
content: ""; }
|
||||
.modal-dialog-centered.modal-dialog-scrollable {
|
||||
flex-direction: column;
|
||||
|
@ -4436,7 +4449,8 @@ a.close.disabled {
|
|||
.modal-dialog-centered {
|
||||
min-height: calc(100% - 3.5rem); }
|
||||
.modal-dialog-centered::before {
|
||||
height: calc(100vh - 3.5rem); }
|
||||
height: calc(100vh - 3.5rem);
|
||||
height: min-content; }
|
||||
.modal-sm {
|
||||
max-width: 300px; } }
|
||||
|
||||
|
@ -4827,7 +4841,8 @@ a.close.disabled {
|
|||
0% {
|
||||
transform: scale(0); }
|
||||
50% {
|
||||
opacity: 1; } }
|
||||
opacity: 1;
|
||||
transform: none; } }
|
||||
|
||||
.spinner-grow {
|
||||
display: inline-block;
|
||||
|
@ -5657,6 +5672,15 @@ button.bg-error:focus {
|
|||
.float-xl-none {
|
||||
float: none !important; } }
|
||||
|
||||
.user-select-all {
|
||||
user-select: all !important; }
|
||||
|
||||
.user-select-auto {
|
||||
user-select: auto !important; }
|
||||
|
||||
.user-select-none {
|
||||
user-select: none !important; }
|
||||
|
||||
.overflow-auto {
|
||||
overflow: auto !important; }
|
||||
|
||||
|
@ -5777,17 +5801,6 @@ button.bg-error:focus {
|
|||
.vh-100 {
|
||||
height: 100vh !important; }
|
||||
|
||||
.stretched-link::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
pointer-events: auto;
|
||||
content: "";
|
||||
background-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.m-0 {
|
||||
margin: 0 !important; }
|
||||
|
||||
|
@ -7146,6 +7159,17 @@ button.bg-error:focus {
|
|||
.mx-xl-auto {
|
||||
margin-left: auto !important; } }
|
||||
|
||||
.stretched-link::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
pointer-events: auto;
|
||||
content: "";
|
||||
background-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.text-monospace {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
|
||||
|
||||
|
@ -7317,8 +7341,7 @@ a.text-error:hover, a.text-error:focus {
|
|||
text-decoration: none !important; }
|
||||
|
||||
.text-break {
|
||||
word-break: break-word !important;
|
||||
overflow-wrap: break-word !important; }
|
||||
word-wrap: break-word !important; }
|
||||
|
||||
.text-reset {
|
||||
color: inherit !important; }
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
|||
@charset "UTF-8";
|
||||
/*!
|
||||
* Bootstrap v4.4.1 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2019 The Bootstrap Authors
|
||||
* Copyright 2011-2019 Twitter, Inc.
|
||||
* Bootstrap v4.5.0 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2020 The Bootstrap Authors
|
||||
* Copyright 2011-2020 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
:root {
|
||||
|
@ -157,7 +157,8 @@ samp {
|
|||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto; }
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar; }
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem; }
|
||||
|
@ -212,6 +213,9 @@ button,
|
|||
select {
|
||||
text-transform: none; }
|
||||
|
||||
[role="button"] {
|
||||
cursor: pointer; }
|
||||
|
||||
select {
|
||||
word-wrap: normal; }
|
||||
|
||||
|
@ -239,12 +243,6 @@ input[type="checkbox"] {
|
|||
box-sizing: border-box;
|
||||
padding: 0; }
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox; }
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical; }
|
||||
|
@ -513,6 +511,7 @@ pre {
|
|||
.col {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
|
||||
.row-cols-1 > * {
|
||||
|
@ -674,6 +673,7 @@ pre {
|
|||
.col-sm {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-sm-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -792,6 +792,7 @@ pre {
|
|||
.col-md {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-md-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -910,6 +911,7 @@ pre {
|
|||
.col-lg {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-lg-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -1028,6 +1030,7 @@ pre {
|
|||
.col-xl {
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
min-width: 0;
|
||||
max-width: 100%; }
|
||||
.row-cols-xl-1 > * {
|
||||
flex: 0 0 100%;
|
||||
|
@ -1469,6 +1472,12 @@ pre {
|
|||
background-color: #6c757d;
|
||||
opacity: 1; }
|
||||
|
||||
input[type="date"].form-control,
|
||||
input[type="time"].form-control,
|
||||
input[type="datetime-local"].form-control,
|
||||
input[type="month"].form-control {
|
||||
appearance: none; }
|
||||
|
||||
select.form-control:focus::-ms-value {
|
||||
color: #000;
|
||||
background-color: #fff; }
|
||||
|
@ -1787,7 +1796,6 @@ textarea.form-control {
|
|||
color: #ced4da;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
background-color: transparent;
|
||||
border: 1px solid transparent;
|
||||
|
@ -1807,6 +1815,8 @@ textarea.form-control {
|
|||
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
|
||||
.btn.disabled, .btn:disabled {
|
||||
opacity: 0.65; }
|
||||
.btn:not(:disabled):not(.disabled) {
|
||||
cursor: pointer; }
|
||||
|
||||
a.btn.disabled,
|
||||
fieldset:disabled a.btn {
|
||||
|
@ -2290,8 +2300,7 @@ fieldset:disabled a.btn {
|
|||
color: #0e778d;
|
||||
text-decoration: underline; }
|
||||
.btn-link:focus, .btn-link.focus {
|
||||
text-decoration: underline;
|
||||
box-shadow: none; }
|
||||
text-decoration: underline; }
|
||||
.btn-link:disabled, .btn-link.disabled {
|
||||
color: #6c757d;
|
||||
pointer-events: none; }
|
||||
|
@ -2639,7 +2648,8 @@ input[type="button"].btn-block {
|
|||
.input-group > .custom-select,
|
||||
.input-group > .custom-file {
|
||||
position: relative;
|
||||
flex: 1 1 0%;
|
||||
flex: 1 1 auto;
|
||||
width: 1%;
|
||||
min-width: 0;
|
||||
margin-bottom: 0; }
|
||||
.input-group > .form-control + .form-control,
|
||||
|
@ -3382,7 +3392,7 @@ input[type="button"].btn-block {
|
|||
border-color: rgba(0, 0, 0, 0.1); }
|
||||
|
||||
.navbar-light .navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
|
||||
.navbar-light .navbar-text {
|
||||
color: rgba(0, 0, 0, 0.5); }
|
||||
|
@ -3414,7 +3424,7 @@ input[type="button"].btn-block {
|
|||
border-color: rgba(255, 255, 255, 0.1); }
|
||||
|
||||
.navbar-dark .navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
|
||||
|
||||
.navbar-dark .navbar-text {
|
||||
color: rgba(255, 255, 255, 0.5); }
|
||||
|
@ -3436,12 +3446,17 @@ input[type="button"].btn-block {
|
|||
.card > hr {
|
||||
margin-right: 0;
|
||||
margin-left: 0; }
|
||||
.card > .list-group:first-child .list-group-item:first-child {
|
||||
border-top-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0.25rem; }
|
||||
.card > .list-group:last-child .list-group-item:last-child {
|
||||
border-bottom-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0.25rem; }
|
||||
.card > .list-group {
|
||||
border-top: inherit;
|
||||
border-bottom: inherit; }
|
||||
.card > .list-group:first-child {
|
||||
border-top-width: 0;
|
||||
border-top-left-radius: calc(0.25rem - 1px);
|
||||
border-top-right-radius: calc(0.25rem - 1px); }
|
||||
.card > .list-group:last-child {
|
||||
border-bottom-width: 0;
|
||||
border-bottom-right-radius: calc(0.25rem - 1px);
|
||||
border-bottom-left-radius: calc(0.25rem - 1px); }
|
||||
|
||||
.card-body {
|
||||
flex: 1 1 auto;
|
||||
|
@ -3597,6 +3612,8 @@ input[type="button"].btn-block {
|
|||
background-color: none;
|
||||
border-radius: 0.25rem; }
|
||||
|
||||
.breadcrumb-item {
|
||||
display: flex; }
|
||||
.breadcrumb-item + .breadcrumb-item {
|
||||
padding-left: 0.5rem; }
|
||||
.breadcrumb-item + .breadcrumb-item::before {
|
||||
|
@ -3604,13 +3621,10 @@ input[type="button"].btn-block {
|
|||
padding-right: 0.5rem;
|
||||
color: #6c757d;
|
||||
content: "/"; }
|
||||
|
||||
.breadcrumb-item + .breadcrumb-item:hover::before {
|
||||
text-decoration: underline; }
|
||||
|
||||
.breadcrumb-item + .breadcrumb-item:hover::before {
|
||||
text-decoration: none; }
|
||||
|
||||
.breadcrumb-item.active {
|
||||
color: #6c757d; }
|
||||
|
||||
|
@ -3952,6 +3966,7 @@ input[type="button"].btn-block {
|
|||
display: flex;
|
||||
height: 1rem;
|
||||
overflow: hidden;
|
||||
line-height: 0;
|
||||
font-size: 0.75rem;
|
||||
background-color: #6c757d;
|
||||
border-radius: 0.25rem; }
|
||||
|
@ -3991,7 +4006,8 @@ input[type="button"].btn-block {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-left: 0;
|
||||
margin-bottom: 0; }
|
||||
margin-bottom: 0;
|
||||
border-radius: 0.25rem; }
|
||||
|
||||
.list-group-item-action {
|
||||
width: 100%;
|
||||
|
@ -4013,11 +4029,11 @@ input[type="button"].btn-block {
|
|||
background-color: #343a40;
|
||||
border: 1px solid rgba(0, 0, 0, 0.125); }
|
||||
.list-group-item:first-child {
|
||||
border-top-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0.25rem; }
|
||||
border-top-left-radius: inherit;
|
||||
border-top-right-radius: inherit; }
|
||||
.list-group-item:last-child {
|
||||
border-bottom-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0.25rem; }
|
||||
border-bottom-right-radius: inherit;
|
||||
border-bottom-left-radius: inherit; }
|
||||
.list-group-item.disabled, .list-group-item:disabled {
|
||||
color: #6c757d;
|
||||
pointer-events: none;
|
||||
|
@ -4035,101 +4051,98 @@ input[type="button"].btn-block {
|
|||
|
||||
.list-group-horizontal {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal .list-group-item:first-child {
|
||||
.list-group-horizontal > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal .list-group-item:last-child {
|
||||
.list-group-horizontal > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal .list-group-item.active {
|
||||
.list-group-horizontal > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal .list-group-item + .list-group-item {
|
||||
.list-group-horizontal > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; }
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.list-group-horizontal-sm {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-sm .list-group-item:first-child {
|
||||
.list-group-horizontal-sm > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-sm .list-group-item:last-child {
|
||||
.list-group-horizontal-sm > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-sm .list-group-item.active {
|
||||
.list-group-horizontal-sm > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-sm .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-sm > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-sm .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.list-group-horizontal-md {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-md .list-group-item:first-child {
|
||||
.list-group-horizontal-md > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-md .list-group-item:last-child {
|
||||
.list-group-horizontal-md > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-md .list-group-item.active {
|
||||
.list-group-horizontal-md > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-md .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-md > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-md .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-md > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.list-group-horizontal-lg {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-lg .list-group-item:first-child {
|
||||
.list-group-horizontal-lg > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-lg .list-group-item:last-child {
|
||||
.list-group-horizontal-lg > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-lg .list-group-item.active {
|
||||
.list-group-horizontal-lg > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-lg .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-lg > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-lg .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.list-group-horizontal-xl {
|
||||
flex-direction: row; }
|
||||
.list-group-horizontal-xl .list-group-item:first-child {
|
||||
.list-group-horizontal-xl > .list-group-item:first-child {
|
||||
border-bottom-left-radius: 0.25rem;
|
||||
border-top-right-radius: 0; }
|
||||
.list-group-horizontal-xl .list-group-item:last-child {
|
||||
.list-group-horizontal-xl > .list-group-item:last-child {
|
||||
border-top-right-radius: 0.25rem;
|
||||
border-bottom-left-radius: 0; }
|
||||
.list-group-horizontal-xl .list-group-item.active {
|
||||
.list-group-horizontal-xl > .list-group-item.active {
|
||||
margin-top: 0; }
|
||||
.list-group-horizontal-xl .list-group-item + .list-group-item {
|
||||
.list-group-horizontal-xl > .list-group-item + .list-group-item {
|
||||
border-top-width: 1px;
|
||||
border-left-width: 0; }
|
||||
.list-group-horizontal-xl .list-group-item + .list-group-item.active {
|
||||
.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
|
||||
margin-left: -1px;
|
||||
border-left-width: 1px; } }
|
||||
|
||||
.list-group-flush .list-group-item {
|
||||
border-right-width: 0;
|
||||
border-left-width: 0;
|
||||
.list-group-flush {
|
||||
border-radius: 0; }
|
||||
.list-group-flush .list-group-item:first-child {
|
||||
border-top-width: 0; }
|
||||
|
||||
.list-group-flush:last-child .list-group-item:last-child {
|
||||
.list-group-flush > .list-group-item {
|
||||
border-width: 0 0 1px; }
|
||||
.list-group-flush > .list-group-item:last-child {
|
||||
border-bottom-width: 0; }
|
||||
|
||||
.list-group-item-primary {
|
||||
|
@ -4259,8 +4272,7 @@ input[type="button"].btn-block {
|
|||
button.close {
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
appearance: none; }
|
||||
border: 0; }
|
||||
|
||||
a.close.disabled {
|
||||
pointer-events: none; }
|
||||
|
@ -4350,6 +4362,7 @@ a.close.disabled {
|
|||
.modal-dialog-centered::before {
|
||||
display: block;
|
||||
height: calc(100vh - 1rem);
|
||||
height: min-content;
|
||||
content: ""; }
|
||||
.modal-dialog-centered.modal-dialog-scrollable {
|
||||
flex-direction: column;
|
||||
|
@ -4436,7 +4449,8 @@ a.close.disabled {
|
|||
.modal-dialog-centered {
|
||||
min-height: calc(100% - 3.5rem); }
|
||||
.modal-dialog-centered::before {
|
||||
height: calc(100vh - 3.5rem); }
|
||||
height: calc(100vh - 3.5rem);
|
||||
height: min-content; }
|
||||
.modal-sm {
|
||||
max-width: 300px; } }
|
||||
|
||||
|
@ -4827,7 +4841,8 @@ a.close.disabled {
|
|||
0% {
|
||||
transform: scale(0); }
|
||||
50% {
|
||||
opacity: 1; } }
|
||||
opacity: 1;
|
||||
transform: none; } }
|
||||
|
||||
.spinner-grow {
|
||||
display: inline-block;
|
||||
|
@ -5657,6 +5672,15 @@ button.bg-error:focus {
|
|||
.float-xl-none {
|
||||
float: none !important; } }
|
||||
|
||||
.user-select-all {
|
||||
user-select: all !important; }
|
||||
|
||||
.user-select-auto {
|
||||
user-select: auto !important; }
|
||||
|
||||
.user-select-none {
|
||||
user-select: none !important; }
|
||||
|
||||
.overflow-auto {
|
||||
overflow: auto !important; }
|
||||
|
||||
|
@ -5777,17 +5801,6 @@ button.bg-error:focus {
|
|||
.vh-100 {
|
||||
height: 100vh !important; }
|
||||
|
||||
.stretched-link::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
pointer-events: auto;
|
||||
content: "";
|
||||
background-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.m-0 {
|
||||
margin: 0 !important; }
|
||||
|
||||
|
@ -7146,6 +7159,17 @@ button.bg-error:focus {
|
|||
.mx-xl-auto {
|
||||
margin-left: auto !important; } }
|
||||
|
||||
.stretched-link::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
pointer-events: auto;
|
||||
content: "";
|
||||
background-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.text-monospace {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
|
||||
|
||||
|
@ -7317,8 +7341,7 @@ a.text-error:hover, a.text-error:focus {
|
|||
text-decoration: none !important; }
|
||||
|
||||
.text-break {
|
||||
word-break: break-word !important;
|
||||
overflow-wrap: break-word !important; }
|
||||
word-wrap: break-word !important; }
|
||||
|
||||
.text-reset {
|
||||
color: inherit !important; }
|
||||
|
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue