Make WordPress Core

Changeset 27236


Ignore:
Timestamp:
02/23/2014 10:29:42 AM (11 years ago)
Author:
ocean90
Message:

Build: Update version of grunt-autoprefixer devDependency.

The update includes a new version of Autoprefixer which now supports the ms-touch-action prop for IE10.
Run grunt autoprefixer:core to re-add the missing props in media-view.css.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/package.json

    r27174 r27236  
    2222    "grunt-cssjanus": "~0.2.2",
    2323    "grunt-sass": "~0.10.0",
    24     "grunt-autoprefixer": "~0.6.5",
     24    "grunt-autoprefixer": "~0.7.1",
    2525    "grunt-jsvalidate": "~0.2.2",
    2626    "grunt-contrib-imagemin" : "~0.4.1",
  • trunk/src/wp-includes/css/media-views.css

    r27174 r27236  
    9393.ui-sortable,
    9494.ui-draggable {
     95    -ms-touch-action: none;
    9596    touch-action: none;
    9697}
    9798
    9899.meta-box-sortables.ui-sortable {
     100    -ms-touch-action: auto;
    99101    touch-action: auto;
    100102}
    101103
    102104.meta-box-sortables.ui-sortable .hndle {
     105    -ms-touch-action: none;
    103106    touch-action: none;
    104107}
Note: See TracChangeset for help on using the changeset viewer.