About Page: update CSS with prefixes
Seconded by melchoyce. See #40721. git-svn-id: https://develop.svn.wordpress.org/trunk@40885 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c06573ec7f
commit
774e82b540
|
@ -163,9 +163,21 @@
|
||||||
.about-wrap [class$="-col"] {
|
.about-wrap [class$="-col"] {
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -moz-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-moz-box-pack: justify;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-moz-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
-webkit-flex-wrap: wrap;
|
||||||
|
-ms-flex-wrap: wrap;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,6 +189,8 @@
|
||||||
.about-wrap [class$="-col"] .col {
|
.about-wrap [class$="-col"] .col {
|
||||||
-webkit-flex: 1;
|
-webkit-flex: 1;
|
||||||
-ms-flex: 1;
|
-ms-flex: 1;
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-moz-box-flex: 1;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -186,6 +200,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-wrap .three-col .col {
|
.about-wrap .three-col .col {
|
||||||
|
-webkit-align-self: flex-start;
|
||||||
|
-ms-flex-item-align: start;
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
min-width: 31%;
|
min-width: 31%;
|
||||||
max-width: 31%;
|
max-width: 31%;
|
||||||
|
|
Loading…
Reference in New Issue