Make WordPress Core

Ticket #26843: 26843.2.patch

File 26843.2.patch, 4.5 KB (added by ocean90, 10 years ago)

Includes copyright banner for Draggable/Sortable CSS

  • src/wp-admin/css/common.css

     
    28492849        content: '\f142';
    28502850}
    28512851
    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 {
    28552862        -ms-touch-action: none;
    28562863        touch-action:     none;
    28572864}
    28582865
    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 
    28732866/* Accordion */
    2874 
    28752867.accordion-section {
    28762868        border-bottom: 1px solid #dfdfdf;
    28772869        margin: 0;
  • src/wp-admin/css/revisions.css

     
    450450        margin-right: -10px;
    451451}
    452452
    453  /* jQuery UI Slider */
     453/* jQuery UI Slider */
    454454.wp-slider.ui-slider {
    455455        position: relative;
    456456        border: 1px solid #d7d7d7;
     
    467467        position: absolute;
    468468        width: 18px;
    469469        z-index: 2;
     470        -ms-touch-action: none;
     471        touch-action: none;
    470472}
    471473
    472474.wp-slider .ui-slider-handle,
  • src/wp-includes/css/jquery-ui-dialog.css

     
    11/*!
    2  * jQuery UI CSS Framework 1.10.1
     2 * jQuery UI CSS Framework 1.11.2
    33 * http://jqueryui.com
    44 *
    5  * Copyright 2013 jQuery Foundation and other contributors
     5 * Copyright 2014 jQuery Foundation and other contributors
    66 * Released under the MIT license.
    77 * http://jquery.org/license
    88 *
    9  * http://docs.jquery.com/UI/Theming/API
     9 * http://api.jqueryui.com/category/theming/
    1010 */
    1111
    1212/* Layout helpers
     
    5353        left: 0;
    5454        position: absolute;
    5555        opacity: 0;
    56         filter:Alpha(Opacity=0);
     56        filter:Alpha(Opacity=0); /* support: IE8 */
    5757}
    5858
     59.ui-front {
     60        z-index: 100;
     61}
     62
     63
    5964/* Interaction Cues
    6065----------------------------------*/
    6166.ui-state-disabled {
    6267        cursor: default !important;
    6368}
    6469
     70
    6571/* Icons
    6672----------------------------------*/
    6773
     
    7379        background-repeat: no-repeat;
    7480}
    7581
     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
    7695/*!
    77  * jQuery UI Resizable 1.10.1
     96 * jQuery UI Resizable 1.11.2
    7897 * http://jqueryui.com
    7998 *
    80  * Copyright 2013 jQuery Foundation and other contributors
     99 * Copyright 2014 jQuery Foundation and other contributors
    81100 * Released under the MIT license.
    82101 * http://jquery.org/license
    83  *
    84  * http://docs.jquery.com/UI/Resizable#theming
    85102 */
    86103.ui-resizable {
    87104        position: relative;
     
    90107        position: absolute;
    91108        font-size: 0.1px;
    92109        display: block;
     110        -ms-touch-action: none;
     111        touch-action: none;
    93112}
    94113.ui-resizable-disabled .ui-resizable-handle,
    95114.ui-resizable-autohide .ui-resizable-handle {
     
    128147/* @noflip */
    129148.ui-resizable-se {
    130149        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;
    135154}
    136155/* @noflip */
    137156.ui-resizable-sw {
  • src/wp-includes/css/media-views.css

     
    104104        display: none;
    105105}
    106106
    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 {
    110117        -ms-touch-action: none;
    111         touch-action: none;
     118        touch-action:     none;
    112119}
    113120
    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 
    124121/**
    125122 * Modal
    126123 */