1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
This commit is contained in:
Mark Otto 2017-10-02 19:12:11 -07:00
parent b26eabf2a3
commit f58997a0da
8 changed files with 66 additions and 11 deletions

View file

@ -173,6 +173,11 @@ html {
max-width: 100%;
}
.order-first {
-ms-flex-order: -1;
order: -1;
}
.order-1 {
-ms-flex-order: 1;
order: 1;
@ -351,6 +356,10 @@ html {
flex: 0 0 100%;
max-width: 100%;
}
.order-sm-first {
-ms-flex-order: -1;
order: -1;
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1;
@ -511,6 +520,10 @@ html {
flex: 0 0 100%;
max-width: 100%;
}
.order-md-first {
-ms-flex-order: -1;
order: -1;
}
.order-md-1 {
-ms-flex-order: 1;
order: 1;
@ -671,6 +684,10 @@ html {
flex: 0 0 100%;
max-width: 100%;
}
.order-lg-first {
-ms-flex-order: -1;
order: -1;
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1;
@ -831,6 +848,10 @@ html {
flex: 0 0 100%;
max-width: 100%;
}
.order-xl-first {
-ms-flex-order: -1;
order: -1;
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -792,6 +792,11 @@ pre code {
max-width: 100%;
}
.order-first {
-ms-flex-order: -1;
order: -1;
}
.order-1 {
-ms-flex-order: 1;
order: 1;
@ -970,6 +975,10 @@ pre code {
flex: 0 0 100%;
max-width: 100%;
}
.order-sm-first {
-ms-flex-order: -1;
order: -1;
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1;
@ -1130,6 +1139,10 @@ pre code {
flex: 0 0 100%;
max-width: 100%;
}
.order-md-first {
-ms-flex-order: -1;
order: -1;
}
.order-md-1 {
-ms-flex-order: 1;
order: 1;
@ -1290,6 +1303,10 @@ pre code {
flex: 0 0 100%;
max-width: 100%;
}
.order-lg-first {
-ms-flex-order: -1;
order: -1;
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1;
@ -1450,6 +1467,10 @@ pre code {
flex: 0 0 100%;
max-width: 100%;
}
.order-xl-first {
-ms-flex-order: -1;
order: -1;
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1;
@ -2721,7 +2742,6 @@ fieldset[disabled] a.btn {
font-weight: normal;
color: #007bff;
background-color: transparent;
border-radius: 0;
}
.btn-link:hover {
@ -3986,10 +4006,6 @@ tbody.collapse.show {
border-bottom-left-radius: 0.25rem;
}
.card .card-header + .list-group > .list-group-item:first-child {
border-top: 0;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
@ -4982,6 +4998,8 @@ button.close {
justify-content: space-between;
padding: 15px;
border-bottom: 1px solid #e9ecef;
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem;
}
.modal-header .close {
@ -5746,6 +5764,10 @@ a.bg-dark:focus, a.bg-dark:hover {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
@ -5776,6 +5798,9 @@ a.bg-dark:focus, a.bg-dark:hover {
.d-sm-table {
display: table !important;
}
.d-sm-table-row {
display: table-row !important;
}
.d-sm-table-cell {
display: table-cell !important;
}
@ -5805,6 +5830,9 @@ a.bg-dark:focus, a.bg-dark:hover {
.d-md-table {
display: table !important;
}
.d-md-table-row {
display: table-row !important;
}
.d-md-table-cell {
display: table-cell !important;
}
@ -5834,6 +5862,9 @@ a.bg-dark:focus, a.bg-dark:hover {
.d-lg-table {
display: table !important;
}
.d-lg-table-row {
display: table-row !important;
}
.d-lg-table-cell {
display: table-cell !important;
}
@ -5863,6 +5894,9 @@ a.bg-dark:focus, a.bg-dark:hover {
.d-xl-table {
display: table !important;
}
.d-xl-table-row {
display: table-row !important;
}
.d-xl-table-cell {
display: table-cell !important;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long