Make WordPress Core

Changeset 26715


Ignore:
Timestamp:
12/06/2013 04:43:23 AM (12 years ago)
Author:
iammattthomas
Message:

Keep draggable panels from interfering with swipe scrolling on touch devices running Internet Explorer 10/11. Fixes #26297, props georgestephanis.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/wp-admin.css

    r26712 r26715  
    1118211182.ui-draggable {
    1118311183    -ms-touch-action: none;
     11184    touch-action:     none;
     11185}
     11186
     11187.meta-box-sortables.ui-sortable,
     11188.menu.ui-sortable {
     11189    -ms-touch-action: auto;
     11190    touch-action:     auto;
     11191}
     11192
     11193.meta-box-sortables.ui-sortable .hndle,
     11194.menu.ui-sortable .menu-item-handle {
     11195    -ms-touch-action: none;
     11196    touch-action:     none;
    1118411197}
    1118511198
  • trunk/src/wp-includes/css/media-views.css

    r26589 r26715  
    8585.ui-draggable {
    8686    -ms-touch-action: none;
     87    touch-action:     none;
     88}
     89
     90.meta-box-sortables.ui-sortable {
     91    -ms-touch-action: auto;
     92    touch-action:     auto;
     93}
     94
     95.meta-box-sortables.ui-sortable .hndle {
     96    -ms-touch-action: none;
     97    touch-action:     none;
    8798}
    8899
Note: See TracChangeset for help on using the changeset viewer.