Make WordPress Core

Changeset 40886 for branches/4.8


Ignore:
Timestamp:
06/08/2017 04:52:10 AM (9 years ago)
Author:
jorbin
Message:

About Page: update CSS with prefixes

Backports [40885] from trunk to 4.8.

Seconded by melchoyce.

See #40721.

Location:
branches/4.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8

  • branches/4.8/src/wp-admin/css/about.css

    r40849 r40886  
    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}
     
    179191        -webkit-flex: 1;
    180192        -ms-flex: 1;
     193        -webkit-box-flex: 1;
     194        -moz-box-flex: 1;
    181195        flex: 1;
    182196}
     
    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%;
Note: See TracChangeset for help on using the changeset viewer.