2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00
This commit is contained in:
Mark Otto
2018-07-29 13:02:42 -07:00
parent f803fb9903
commit 6233ea378d
9 changed files with 1369 additions and 10 deletions
+1312
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+50 -3
View File
@@ -3719,7 +3719,8 @@ input[type="button"].btn-block {
.custom-range { .custom-range {
width: 100%; width: 100%;
padding-left: 0; height: calc(1rem + 0.4rem);
padding: 0;
background-color: transparent; background-color: transparent;
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
@@ -3853,6 +3854,26 @@ input[type="button"].btn-block {
border-radius: 1rem; 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-control-label::before,
.custom-file-label, .custom-file-label,
.custom-select { .custom-select {
@@ -5511,6 +5532,12 @@ button.close {
} }
} }
@media (min-width: 1200px) {
.modal-xl {
max-width: 1140px;
}
}
.tooltip { .tooltip {
position: absolute; position: absolute;
z-index: 1070; z-index: 1070;
@@ -6009,7 +6036,15 @@ button.close {
margin-left: 3px; margin-left: 3px;
text-indent: -999px; text-indent: -999px;
cursor: pointer; 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 { .carousel-indicators li::before {
@@ -6033,7 +6068,7 @@ button.close {
} }
.carousel-indicators .active { .carousel-indicators .active {
background-color: #fff; opacity: 1;
} }
.carousel-caption { .carousel-caption {
@@ -8837,6 +8872,10 @@ button.bg-dark:focus {
font-weight: 300 !important; font-weight: 300 !important;
} }
.font-weight-lighter {
font-weight: lighter !important;
}
.font-weight-normal { .font-weight-normal {
font-weight: 400 !important; font-weight: 400 !important;
} }
@@ -8845,6 +8884,10 @@ button.bg-dark:focus {
font-weight: 700 !important; font-weight: 700 !important;
} }
.font-weight-bolder {
font-weight: bolder !important;
}
.font-italic { .font-italic {
font-style: italic !important; font-style: italic !important;
} }
@@ -8941,6 +8984,10 @@ a.text-dark:hover, a.text-dark:focus {
border: 0; border: 0;
} }
.text-decoration-none {
text-decoration: none !important;
}
.visible { .visible {
visibility: visible !important; visibility: visible !important;
} }
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long