mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-15 11:59:39 +03:00
Dist (#31644)
This commit is contained in:
Vendored
+117
-23
@@ -52,7 +52,6 @@
|
||||
--bs-gutter-x: 1.5rem;
|
||||
--bs-gutter-y: 0;
|
||||
display: flex;
|
||||
flex: 1 0 100%;
|
||||
flex-wrap: wrap;
|
||||
margin-top: calc(var(--bs-gutter-y) * -1);
|
||||
margin-right: calc(var(--bs-gutter-x) / -2);
|
||||
@@ -1127,10 +1126,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.d-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -1163,6 +1158,10 @@
|
||||
display: inline-flex !important;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.flex-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -1191,6 +1190,26 @@
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
|
||||
.flex-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
|
||||
.flex-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
|
||||
.flex-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
|
||||
.flex-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
|
||||
.justify-content-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -1706,9 +1725,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.d-sm-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-sm-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -1733,6 +1749,9 @@
|
||||
.d-sm-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-sm-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-sm-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -1754,6 +1773,21 @@
|
||||
.flex-sm-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
.flex-sm-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
.flex-sm-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
.flex-sm-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
.flex-sm-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
.flex-sm-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
.justify-content-sm-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -2149,9 +2183,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.d-md-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-md-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -2176,6 +2207,9 @@
|
||||
.d-md-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-md-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-md-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -2197,6 +2231,21 @@
|
||||
.flex-md-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
.flex-md-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
.flex-md-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
.flex-md-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
.flex-md-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
.flex-md-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
.justify-content-md-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -2592,9 +2641,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.d-lg-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-lg-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -2619,6 +2665,9 @@
|
||||
.d-lg-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-lg-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-lg-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -2640,6 +2689,21 @@
|
||||
.flex-lg-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
.flex-lg-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
.flex-lg-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
.flex-lg-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
.flex-lg-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
.flex-lg-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
.justify-content-lg-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -3035,9 +3099,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.d-xl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-xl-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -3062,6 +3123,9 @@
|
||||
.d-xl-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-xl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-xl-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -3083,6 +3147,21 @@
|
||||
.flex-xl-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
.flex-xl-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
.flex-xl-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
.flex-xl-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
.flex-xl-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
.flex-xl-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
.justify-content-xl-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -3478,9 +3557,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 1400px) {
|
||||
.d-xxl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-xxl-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -3505,6 +3581,9 @@
|
||||
.d-xxl-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-xxl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-xxl-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -3526,6 +3605,21 @@
|
||||
.flex-xxl-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
.flex-xxl-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
.flex-xxl-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
.flex-xxl-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
.flex-xxl-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
.flex-xxl-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
.justify-content-xxl-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
@@ -3921,9 +4015,6 @@
|
||||
}
|
||||
|
||||
@media print {
|
||||
.d-print-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-print-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -3948,5 +4039,8 @@
|
||||
.d-print-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-print-none {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-grid.css.map */
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+52
-28
@@ -48,10 +48,6 @@
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.d-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -84,6 +80,10 @@
|
||||
display: inline-flex !important;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
||||
}
|
||||
@@ -170,11 +170,11 @@
|
||||
}
|
||||
|
||||
.border-success {
|
||||
border-color: #28a745 !important;
|
||||
border-color: #198754 !important;
|
||||
}
|
||||
|
||||
.border-info {
|
||||
border-color: #17a2b8 !important;
|
||||
border-color: #0dcaf0 !important;
|
||||
}
|
||||
|
||||
.border-warning {
|
||||
@@ -197,6 +197,30 @@
|
||||
border-color: #fff !important;
|
||||
}
|
||||
|
||||
.border-0 {
|
||||
border-width: 0 !important;
|
||||
}
|
||||
|
||||
.border-1 {
|
||||
border-width: 1px !important;
|
||||
}
|
||||
|
||||
.border-2 {
|
||||
border-width: 2px !important;
|
||||
}
|
||||
|
||||
.border-3 {
|
||||
border-width: 3px !important;
|
||||
}
|
||||
|
||||
.border-4 {
|
||||
border-width: 4px !important;
|
||||
}
|
||||
|
||||
.border-5 {
|
||||
border-width: 5px !important;
|
||||
}
|
||||
|
||||
.w-25 {
|
||||
width: 25% !important;
|
||||
}
|
||||
@@ -876,11 +900,11 @@
|
||||
}
|
||||
|
||||
.text-success {
|
||||
color: #28a745 !important;
|
||||
color: #198754 !important;
|
||||
}
|
||||
|
||||
.text-info {
|
||||
color: #17a2b8 !important;
|
||||
color: #0dcaf0 !important;
|
||||
}
|
||||
|
||||
.text-warning {
|
||||
@@ -948,11 +972,11 @@
|
||||
}
|
||||
|
||||
.bg-success {
|
||||
background-color: #28a745 !important;
|
||||
background-color: #198754 !important;
|
||||
}
|
||||
|
||||
.bg-info {
|
||||
background-color: #17a2b8 !important;
|
||||
background-color: #0dcaf0 !important;
|
||||
}
|
||||
|
||||
.bg-warning {
|
||||
@@ -1115,9 +1139,6 @@
|
||||
.float-sm-none {
|
||||
float: none !important;
|
||||
}
|
||||
.d-sm-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-sm-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -1142,6 +1163,9 @@
|
||||
.d-sm-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-sm-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-sm-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -1591,9 +1615,6 @@
|
||||
.float-md-none {
|
||||
float: none !important;
|
||||
}
|
||||
.d-md-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-md-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -1618,6 +1639,9 @@
|
||||
.d-md-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-md-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-md-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -2067,9 +2091,6 @@
|
||||
.float-lg-none {
|
||||
float: none !important;
|
||||
}
|
||||
.d-lg-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-lg-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -2094,6 +2115,9 @@
|
||||
.d-lg-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-lg-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-lg-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -2543,9 +2567,6 @@
|
||||
.float-xl-none {
|
||||
float: none !important;
|
||||
}
|
||||
.d-xl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-xl-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -2570,6 +2591,9 @@
|
||||
.d-xl-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-xl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-xl-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -3019,9 +3043,6 @@
|
||||
.float-xxl-none {
|
||||
float: none !important;
|
||||
}
|
||||
.d-xxl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-xxl-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -3046,6 +3067,9 @@
|
||||
.d-xxl-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-xxl-none {
|
||||
display: none !important;
|
||||
}
|
||||
.flex-xxl-fill {
|
||||
flex: 1 1 auto !important;
|
||||
}
|
||||
@@ -3486,9 +3510,6 @@
|
||||
}
|
||||
|
||||
@media print {
|
||||
.d-print-none {
|
||||
display: none !important;
|
||||
}
|
||||
.d-print-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
@@ -3513,5 +3534,8 @@
|
||||
.d-print-inline-flex {
|
||||
display: inline-flex !important;
|
||||
}
|
||||
.d-print-none {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-utilities.css.map */
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+263
-229
File diff suppressed because it is too large
Load Diff
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user