Ticket #26843: 26843.2.patch
File 26843.2.patch, 4.5 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/common.css
2849 2849 content: '\f142'; 2850 2850 } 2851 2851 2852 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 2853 .ui-sortable, 2854 .ui-draggable { 2852 /*! 2853 * jQuery UI Draggable/Sortable 1.11.2 2854 * http://jqueryui.com 2855 * 2856 * Copyright 2014 jQuery Foundation and other contributors 2857 * Released under the MIT license. 2858 * http://jquery.org/license 2859 */ 2860 .ui-draggable-handle, 2861 .ui-sortable-handle { 2855 2862 -ms-touch-action: none; 2856 2863 touch-action: none; 2857 2864 } 2858 2865 2859 .meta-box-sortables.ui-sortable,2860 .widgets-holder-wrap .ui-draggable,2861 .widgets-holder-wrap .ui-sortable,2862 .menu.ui-sortable {2863 -ms-touch-action: auto;2864 touch-action: auto;2865 }2866 2867 .meta-box-sortables.ui-sortable .hndle,2868 .menu.ui-sortable .menu-item-handle {2869 -ms-touch-action: none;2870 touch-action: none;2871 }2872 2873 2866 /* Accordion */ 2874 2875 2867 .accordion-section { 2876 2868 border-bottom: 1px solid #dfdfdf; 2877 2869 margin: 0; -
src/wp-admin/css/revisions.css
450 450 margin-right: -10px; 451 451 } 452 452 453 453 /* jQuery UI Slider */ 454 454 .wp-slider.ui-slider { 455 455 position: relative; 456 456 border: 1px solid #d7d7d7; … … 467 467 position: absolute; 468 468 width: 18px; 469 469 z-index: 2; 470 -ms-touch-action: none; 471 touch-action: none; 470 472 } 471 473 472 474 .wp-slider .ui-slider-handle, -
src/wp-includes/css/jquery-ui-dialog.css
1 1 /*! 2 * jQuery UI CSS Framework 1.1 0.12 * jQuery UI CSS Framework 1.11.2 3 3 * http://jqueryui.com 4 4 * 5 * Copyright 201 3jQuery Foundation and other contributors5 * Copyright 2014 jQuery Foundation and other contributors 6 6 * Released under the MIT license. 7 7 * http://jquery.org/license 8 8 * 9 * http:// docs.jquery.com/UI/Theming/API9 * http://api.jqueryui.com/category/theming/ 10 10 */ 11 11 12 12 /* Layout helpers … … 53 53 left: 0; 54 54 position: absolute; 55 55 opacity: 0; 56 filter:Alpha(Opacity=0); 56 filter:Alpha(Opacity=0); /* support: IE8 */ 57 57 } 58 58 59 .ui-front { 60 z-index: 100; 61 } 62 63 59 64 /* Interaction Cues 60 65 ----------------------------------*/ 61 66 .ui-state-disabled { 62 67 cursor: default !important; 63 68 } 64 69 70 65 71 /* Icons 66 72 ----------------------------------*/ 67 73 … … 73 79 background-repeat: no-repeat; 74 80 } 75 81 82 83 /* Misc visuals 84 ----------------------------------*/ 85 86 /* Overlays */ 87 .ui-widget-overlay { 88 position: fixed; 89 top: 0; 90 left: 0; 91 width: 100%; 92 height: 100%; 93 } 94 76 95 /*! 77 * jQuery UI Resizable 1.1 0.196 * jQuery UI Resizable 1.11.2 78 97 * http://jqueryui.com 79 98 * 80 * Copyright 201 3jQuery Foundation and other contributors99 * Copyright 2014 jQuery Foundation and other contributors 81 100 * Released under the MIT license. 82 101 * http://jquery.org/license 83 *84 * http://docs.jquery.com/UI/Resizable#theming85 102 */ 86 103 .ui-resizable { 87 104 position: relative; … … 90 107 position: absolute; 91 108 font-size: 0.1px; 92 109 display: block; 110 -ms-touch-action: none; 111 touch-action: none; 93 112 } 94 113 .ui-resizable-disabled .ui-resizable-handle, 95 114 .ui-resizable-autohide .ui-resizable-handle { … … 128 147 /* @noflip */ 129 148 .ui-resizable-se { 130 149 cursor: se-resize; 131 width: 9px;132 height: 9px;133 right: -5px;134 bottom: -5px;150 width: 12px; 151 height: 12px; 152 right: 1px; 153 bottom: 1px; 135 154 } 136 155 /* @noflip */ 137 156 .ui-resizable-sw { -
src/wp-includes/css/media-views.css
104 104 display: none; 105 105 } 106 106 107 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 108 .ui-sortable, 109 .ui-draggable { 107 /*! 108 * jQuery UI Draggable/Sortable 1.11.2 109 * http://jqueryui.com 110 * 111 * Copyright 2014 jQuery Foundation and other contributors 112 * Released under the MIT license. 113 * http://jquery.org/license 114 */ 115 .ui-draggable-handle, 116 .ui-sortable-handle { 110 117 -ms-touch-action: none; 111 touch-action: none;118 touch-action: none; 112 119 } 113 120 114 .meta-box-sortables.ui-sortable {115 -ms-touch-action: auto;116 touch-action: auto;117 }118 119 .meta-box-sortables.ui-sortable .hndle {120 -ms-touch-action: none;121 touch-action: none;122 }123 124 121 /** 125 122 * Modal 126 123 */