Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-10-05 18:50:18 +0300
committerGitHub <noreply@github.com>2021-10-05 18:50:18 +0300
commit5ecef8ac010249536f92206af500f8670813c8a8 (patch)
tree26b271f1901b70b5a6f4b25ef72186a04f51c665 /dist/css/bootstrap.css
parenta2aa8c5a6e8c37fa605ca31111c6529629d32b3f (diff)
Release v5.1.2 (#35114)v5.1.2
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css71
1 files changed, 58 insertions, 13 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index f78e177189..2dffd80cbe 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
- * Bootstrap v5.1.1 (https://getbootstrap.com/)
+ * Bootstrap v5.1.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
@@ -448,6 +448,10 @@ legend + * {
padding: 0;
}
+::-webkit-file-upload-button {
+ font: inherit;
+}
+
::file-selector-button {
font: inherit;
}
@@ -661,16 +665,16 @@ progress {
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
- margin-top: calc(var(--bs-gutter-y) * -1);
- margin-right: calc(var(--bs-gutter-x) * -.5);
- margin-left: calc(var(--bs-gutter-x) * -.5);
+ margin-top: calc(-1 * var(--bs-gutter-y));
+ margin-right: calc(-0.5 * var(--bs-gutter-x));
+ margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
flex-shrink: 0;
width: 100%;
max-width: 100%;
- padding-right: calc(var(--bs-gutter-x) * .5);
- padding-left: calc(var(--bs-gutter-x) * .5);
+ padding-right: calc(var(--bs-gutter-x) * 0.5);
+ padding-left: calc(var(--bs-gutter-x) * 0.5);
margin-top: var(--bs-gutter-y);
}
@@ -1974,8 +1978,8 @@ progress {
.table > thead {
vertical-align: bottom;
}
-.table > :not(:last-child) > :last-child > * {
- border-bottom-color: currentColor;
+.table > :not(:first-child) {
+ border-top: 2px solid currentColor;
}
.caption-top {
@@ -1996,8 +2000,11 @@ progress {
.table-borderless > :not(caption) > * > * {
border-bottom-width: 0;
}
+.table-borderless > :not(:first-child) {
+ border-top-width: 0;
+}
-.table-striped > tbody > tr:nth-of-type(odd) {
+.table-striped > tbody > tr:nth-of-type(odd) > * {
--bs-table-accent-bg: var(--bs-table-striped-bg);
color: var(--bs-table-striped-color);
}
@@ -2007,7 +2014,7 @@ progress {
color: var(--bs-table-active-color);
}
-.table-hover > tbody > tr:hover {
+.table-hover > tbody > tr:hover > * {
--bs-table-accent-bg: var(--bs-table-hover-bg);
color: var(--bs-table-hover-color);
}
@@ -2223,6 +2230,22 @@ progress {
background-color: #e9ecef;
opacity: 1;
}
+.form-control::-webkit-file-upload-button {
+ padding: 0.375rem 0.75rem;
+ margin: -0.375rem -0.75rem;
+ -webkit-margin-end: 0.75rem;
+ margin-inline-end: 0.75rem;
+ color: #212529;
+ background-color: #e9ecef;
+ pointer-events: none;
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0;
+ border-inline-end-width: 1px;
+ border-radius: 0;
+ -webkit-transition: color 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: color 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;
+}
.form-control::file-selector-button {
padding: 0.375rem 0.75rem;
margin: -0.375rem -0.75rem;
@@ -2239,10 +2262,17 @@ progress {
transition: color 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;
}
@media (prefers-reduced-motion: reduce) {
+ .form-control::-webkit-file-upload-button {
+ -webkit-transition: none;
+ transition: none;
+ }
.form-control::file-selector-button {
transition: none;
}
}
+.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
+ background-color: #dde0e3;
+}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: #dde0e3;
}
@@ -2294,6 +2324,12 @@ progress {
font-size: 0.875rem;
border-radius: 0.2rem;
}
+.form-control-sm::-webkit-file-upload-button {
+ padding: 0.25rem 0.5rem;
+ margin: -0.25rem -0.5rem;
+ -webkit-margin-end: 0.5rem;
+ margin-inline-end: 0.5rem;
+}
.form-control-sm::file-selector-button {
padding: 0.25rem 0.5rem;
margin: -0.25rem -0.5rem;
@@ -2313,6 +2349,12 @@ progress {
font-size: 1.25rem;
border-radius: 0.3rem;
}
+.form-control-lg::-webkit-file-upload-button {
+ padding: 0.5rem 1rem;
+ margin: -0.5rem -1rem;
+ -webkit-margin-end: 1rem;
+ margin-inline-end: 1rem;
+}
.form-control-lg::file-selector-button {
padding: 0.5rem 1rem;
margin: -0.5rem -1rem;
@@ -2401,6 +2443,7 @@ textarea.form-control-lg {
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 0.875rem;
+ border-radius: 0.2rem;
}
.form-select-lg {
@@ -2408,6 +2451,7 @@ textarea.form-control-lg {
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem;
+ border-radius: 0.3rem;
}
.form-check {
@@ -2929,6 +2973,7 @@ textarea.form-control-lg {
.btn {
display: inline-block;
+ align-self: center;
font-weight: 400;
line-height: 1.5;
color: #212529;
@@ -6444,15 +6489,15 @@ textarea.form-control-lg {
}
.ratio-4x3 {
- --bs-aspect-ratio: calc(3 / 4 * 100%);
+ --bs-aspect-ratio: 75%;
}
.ratio-16x9 {
- --bs-aspect-ratio: calc(9 / 16 * 100%);
+ --bs-aspect-ratio: 56.25%;
}
.ratio-21x9 {
- --bs-aspect-ratio: calc(9 / 21 * 100%);
+ --bs-aspect-ratio: 42.8571428571%;
}
.fixed-top {