Make WordPress Core

Ticket #40721: 40721.14.diff

File 40721.14.diff, 1.0 KB (added by jorbin, 9 years ago)
  • src/wp-admin/css/about.css

     
    164164.about-wrap [class$="-col"] {
    165165        display: -ms-flexbox;
    166166        display: -webkit-flex;
     167        display: -webkit-box;
     168        display: -moz-box;
    167169        display: flex;
     170        -webkit-box-pack: justify;
     171        -webkit-justify-content: space-between;
     172        -moz-box-pack: justify;
     173        -ms-flex-pack: justify;
    168174        justify-content: space-between;
     175        -webkit-box-align: center;
     176        -webkit-align-items: center;
     177        -moz-box-align: center;
     178        -ms-flex-align: center;
    169179        align-items: center;
     180        -webkit-flex-wrap: wrap;
     181        -ms-flex-wrap: wrap;
    170182        flex-wrap: wrap;
    171183}
    172184
     
    178190.about-wrap [class$="-col"] .col {
    179191        -webkit-flex: 1;
    180192        -ms-flex: 1;
     193        -webkit-box-flex: 1;
     194        -moz-box-flex: 1;
    181195        flex: 1;
    182196}
    183197
     
    187201}
    188202
    189203.about-wrap .three-col .col {
     204        -webkit-align-self: flex-start;
     205        -ms-flex-item-align: start;
    190206        align-self: flex-start;
    191207        min-width: 31%;
    192208        max-width: 31%;