This commit is contained in:
Mark Otto 2018-07-29 13:02:42 -07:00
parent f803fb9903
commit 6233ea378d
9 changed files with 1364 additions and 5 deletions

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

Binary file not shown.

Binary file not shown.

View file

@ -3719,7 +3719,8 @@ input[type="button"].btn-block {
.custom-range {
width: 100%;
padding-left: 0;
height: calc(1rem + 0.4rem);
padding: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
@ -3853,6 +3854,26 @@ input[type="button"].btn-block {
border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
cursor: default;
}
.custom-range:disabled::-ms-thumb {
background-color: #adb5bd;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
@ -5511,6 +5532,12 @@ button.close {
}
}
@media (min-width: 1200px) {
.modal-xl {
max-width: 1140px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
@ -6009,7 +6036,15 @@ button.close {
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: rgba(255, 255, 255, 0.5);
background-color: #fff;
opacity: .5;
transition: opacity 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
.carousel-indicators li {
transition: none;
}
}
.carousel-indicators li::before {
@ -6033,7 +6068,7 @@ button.close {
}
.carousel-indicators .active {
background-color: #fff;
opacity: 1;
}
.carousel-caption {
@ -8837,6 +8872,10 @@ button.bg-dark:focus {
font-weight: 300 !important;
}
.font-weight-lighter {
font-weight: lighter !important;
}
.font-weight-normal {
font-weight: 400 !important;
}
@ -8845,6 +8884,10 @@ button.bg-dark:focus {
font-weight: 700 !important;
}
.font-weight-bolder {
font-weight: bolder !important;
}
.font-italic {
font-style: italic !important;
}
@ -8941,6 +8984,10 @@ a.text-dark:hover, a.text-dark:focus {
border: 0;
}
.text-decoration-none {
text-decoration: none !important;
}
.visible {
visibility: visible !important;
}

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.