Changeset 30343
- Timestamp:
- 11/14/2014 07:27:38 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r29983 r30343 2855 2855 } 2856 2856 2857 /* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */ 2858 .ui-sortable, 2859 .ui-draggable { 2857 /*! 2858 * jQuery UI Draggable/Sortable 1.11.2 2859 * http://jqueryui.com 2860 * 2861 * Copyright 2014 jQuery Foundation and other contributors 2862 * Released under the MIT license. 2863 * http://jquery.org/license 2864 */ 2865 .ui-draggable-handle, 2866 .ui-sortable-handle { 2860 2867 -ms-touch-action: none; 2861 2868 touch-action: none; 2862 2869 } 2863 2870 2864 .meta-box-sortables.ui-sortable,2865 .widgets-holder-wrap .ui-draggable,2866 .widgets-holder-wrap .ui-sortable,2867 .menu.ui-sortable {2868 -ms-touch-action: auto;2869 touch-action: auto;2870 }2871 2872 .meta-box-sortables.ui-sortable .hndle,2873 .menu.ui-sortable .menu-item-handle {2874 -ms-touch-action: none;2875 touch-action: none;2876 }2877 2878 2871 /* Accordion */ 2879 2880 2872 .accordion-section { 2881 2873 border-bottom: 1px solid #dfdfdf; -
trunk/src/wp-admin/css/revisions.css
r29314 r30343 451 451 } 452 452 453 453 /* jQuery UI Slider */ 454 454 .wp-slider.ui-slider { 455 455 position: relative; … … 468 468 width: 18px; 469 469 z-index: 2; 470 -ms-touch-action: none; 471 touch-action: none; 470 472 } 471 473 -
trunk/src/wp-includes/css/jquery-ui-dialog.css
r29616 r30343 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 … … 54 54 position: absolute; 55 55 opacity: 0; 56 filter:Alpha(Opacity=0); 57 } 56 filter:Alpha(Opacity=0); /* support: IE8 */ 57 } 58 59 .ui-front { 60 z-index: 100; 61 } 62 58 63 59 64 /* Interaction Cues … … 62 67 cursor: default !important; 63 68 } 69 64 70 65 71 /* Icons … … 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 { … … 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, … … 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 */ -
trunk/src/wp-includes/css/media-views.css
r29876 r30343 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; 112 } 113 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; 118 touch-action: none; 122 119 } 123 120
Note: See TracChangeset
for help on using the changeset viewer.