Make WordPress Core

Ticket #23370: 23370.4.patch

File 23370.4.patch, 18.4 KB (added by ocean90, 12 years ago)

refresh of .3

  • wp-includes/js/wplink.js

     
    7171                                        width: 480,
    7272                                        height: 'auto',
    7373                                        modal: true,
    74                                         dialogClass: 'wp-dialog',
    75                                         zIndex: 300000
     74                                        dialogClass: 'wp-dialog'
    7675                                });
    7776                        }
    7877
  • wp-includes/css/editor.css

     
    13671367        float: right;
    13681368}
    13691369
    1370 /*
    1371  * Based on:
    1372  * jQuery UI CSS Framework @VERSION
     1370/*!
     1371 * jQuery UI CSS Framework 1.10.1
     1372 * http://jqueryui.com
    13731373 *
    1374  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    1375  * Dual licensed under the MIT or GPL Version 2 licenses.
     1374 * Copyright 2013 jQuery Foundation and other contributors
     1375 * Released under the MIT license.
    13761376 * http://jquery.org/license
    13771377 *
    13781378 * http://docs.jquery.com/UI/Theming/API
     
    13801380
    13811381/* Layout helpers
    13821382----------------------------------*/
    1383 .ui-helper-hidden { display: none; }
    1384 .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
    1385 .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
    1386 .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
    1387 .ui-helper-clearfix { display: inline-block; }
    1388 /* required comment for clearfix to work in Opera \*/
    1389 * html .ui-helper-clearfix { height:1%; }
    1390 .ui-helper-clearfix { display:block; }
    1391 /* end clearfix */
    1392 .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
     1383.ui-helper-hidden {
     1384        display: none;
     1385}
     1386.ui-helper-hidden-accessible {
     1387        border: 0;
     1388        clip: rect(0 0 0 0);
     1389        height: 1px;
     1390        margin: -1px;
     1391        overflow: hidden;
     1392        padding: 0;
     1393        position: absolute;
     1394        width: 1px;
     1395}
     1396.ui-helper-reset {
     1397        margin: 0;
     1398        padding: 0;
     1399        border: 0;
     1400        outline: 0;
     1401        line-height: 1.3;
     1402        text-decoration: none;
     1403        font-size: 100%;
     1404        list-style: none;
     1405}
     1406.ui-helper-clearfix:before,
     1407.ui-helper-clearfix:after {
     1408        content: "";
     1409        display: table;
     1410        border-collapse: collapse;
     1411}
     1412.ui-helper-clearfix:after {
     1413        clear: both;
     1414}
     1415.ui-helper-clearfix {
     1416        min-height: 0; /* support: IE7 */
     1417}
     1418.ui-helper-zfix {
     1419        width: 100%;
     1420        height: 100%;
     1421        top: 0;
     1422        left: 0;
     1423        position: absolute;
     1424        opacity: 0;
     1425        filter:Alpha(Opacity=0);
     1426}
    13931427
     1428.ui-front {
     1429        z-index: 100;
     1430}
     1431
     1432
    13941433/* Interaction Cues
    13951434----------------------------------*/
    1396 .ui-state-disabled { cursor: default !important; }
     1435.ui-state-disabled {
     1436        cursor: default !important;
     1437}
    13971438
     1439
    13981440/* Icons
    13991441----------------------------------*/
    14001442
    14011443/* states and images */
    1402 .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
     1444.ui-icon {
     1445        display: block;
     1446        text-indent: -99999px;
     1447        overflow: hidden;
     1448        background-repeat: no-repeat;
     1449}
    14031450
     1451
    14041452/* Misc visuals
    14051453----------------------------------*/
    14061454
    14071455/* Overlays */
    1408 .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
     1456.ui-widget-overlay {
     1457        position: fixed;
     1458        top: 0;
     1459        left: 0;
     1460        width: 100%;
     1461        height: 100%;
     1462}
    14091463
    1410 /*
    1411  * jQuery UI Resizable
     1464
     1465/*!
     1466 * jQuery UI Resizable 1.10.1
     1467 * http://jqueryui.com
    14121468 *
    1413  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    1414  * Dual licensed under the MIT or GPL Version 2 licenses.
     1469 * Copyright 2013 jQuery Foundation and other contributors
     1470 * Released under the MIT license.
    14151471 * http://jquery.org/license
    14161472 *
    14171473 * http://docs.jquery.com/UI/Resizable#theming
    14181474 */
    1419 .ui-resizable { position: relative;}
    1420 .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
    1421 .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
    1422 .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
    1423 .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
    1424 .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
    1425 .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
    1426 .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
    1427 .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
    1428 .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
    1429 .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
     1475.ui-resizable {
     1476        position: relative;
     1477}
     1478.ui-resizable-handle {
     1479        position: absolute;
     1480        font-size: 0.1px;
     1481        display: block;
     1482}
     1483.ui-resizable-disabled .ui-resizable-handle,
     1484.ui-resizable-autohide .ui-resizable-handle {
     1485        display: none;
     1486}
     1487.ui-resizable-n {
     1488        cursor: n-resize;
     1489        height: 7px;
     1490        width: 100%;
     1491        top: -5px;
     1492        left: 0;
     1493}
     1494.ui-resizable-s {
     1495        cursor: s-resize;
     1496        height: 7px;
     1497        width: 100%;
     1498        bottom: -5px;
     1499        left: 0;
     1500}
     1501.ui-resizable-e {
     1502        cursor: e-resize;
     1503        width: 7px;
     1504        right: -5px;
     1505        top: 0;
     1506        height: 100%;
     1507}
     1508.ui-resizable-w {
     1509        cursor: w-resize;
     1510        width: 7px;
     1511        left: -5px;
     1512        top: 0;
     1513        height: 100%;
     1514}
     1515.ui-resizable-se {
     1516        cursor: se-resize;
     1517        width: 12px;
     1518        height: 12px;
     1519        right: 1px;
     1520        bottom: 1px;
     1521}
     1522.ui-resizable-sw {
     1523        cursor: sw-resize;
     1524        width: 9px;
     1525        height: 9px;
     1526        left: -5px;
     1527        bottom: -5px;
     1528}
     1529.ui-resizable-nw {
     1530        cursor: nw-resize;
     1531        width: 9px;
     1532        height: 9px;
     1533        left: -5px;
     1534        top: -5px;
     1535}
     1536.ui-resizable-ne {
     1537        cursor: ne-resize;
     1538        width: 9px;
     1539        height: 9px;
     1540        right: -5px;
     1541        top: -5px;
     1542}
    14301543
    1431 /*
    1432  * jQuery UI Dialog
     1544/*!
     1545 * jQuery UI Dialog 1.10.1
     1546 * http://jqueryui.com
    14331547 *
    1434  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    1435  * Dual licensed under the MIT or GPL Version 2 licenses.
     1548 * Copyright 2013 jQuery Foundation and other contributors
     1549 * Released under the MIT license.
    14361550 * http://jquery.org/license
    14371551 *
    14381552 * http://docs.jquery.com/UI/Dialog#theming
    14391553 */
    1440 .wp-dialog { position: absolute; width: 300px; overflow: hidden; }
    1441 .wp-dialog .ui-dialog-titlebar { position: relative; }
    1442 .wp-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
    1443 .wp-dialog .ui-dialog-content { position: relative; border: 0; padding: 0; background: none; overflow: auto; zoom: 1; }
    1444 .wp-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
    1445 .wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
    1446 .wp-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
    1447 .wp-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
    1448 .ui-draggable .ui-dialog-titlebar { cursor: move; }
     1554.ui-dialog {
     1555        position: absolute;
     1556        top: 0;
     1557        left: 0;
     1558        padding: .2em;
     1559        outline: 0;
     1560}
     1561.ui-dialog .ui-dialog-titlebar {
     1562        padding: .4em 1em;
     1563        position: relative;
     1564}
     1565.ui-dialog .ui-dialog-title {
     1566        float: left;
     1567        margin: .1em 0;
     1568        white-space: nowrap;
     1569        width: 90%;
     1570        overflow: hidden;
     1571        text-overflow: ellipsis;
     1572}
     1573.ui-dialog .ui-dialog-titlebar-close {
     1574        position: absolute;
     1575        right: .3em;
     1576        top: 50%;
     1577        width: 21px;
     1578        margin: -10px 0 0 0;
     1579        padding: 1px;
     1580        height: 20px;
     1581}
     1582.ui-dialog .ui-dialog-content {
     1583        position: relative;
     1584        border: 0;
     1585        padding: .5em 1em;
     1586        background: none;
     1587        overflow: auto;
     1588}
     1589.ui-dialog .ui-dialog-buttonpane {
     1590        text-align: left;
     1591        border-width: 1px 0 0 0;
     1592        background-image: none;
     1593        margin-top: .5em;
     1594        padding: .3em 1em .5em .4em;
     1595}
     1596.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
     1597        float: right;
     1598}
     1599.ui-dialog .ui-dialog-buttonpane button {
     1600        margin: .5em .4em .5em 0;
     1601        cursor: pointer;
     1602}
     1603.ui-dialog .ui-resizable-se {
     1604        width: 12px;
     1605        height: 12px;
     1606        right: -5px;
     1607        bottom: -5px;
     1608        background-position: 16px 16px;
     1609}
     1610.ui-draggable .ui-dialog-titlebar {
     1611        cursor: move;
     1612}
    14491613
    14501614/* WP jQuery Dialog Theme */
    14511615.wp-dialog {
     1616        padding: 0;
     1617        z-index: 300002;
    14521618        border: 1px solid #999;
    14531619        -webkit-box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
    14541620        box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
     1621        background-color: #f5f5f5;
     1622        -webkit-border-top-left-radius: 4px;
     1623        border-top-left-radius: 4px;
     1624        -webkit-border-top-right-radius: 4px;
     1625        border-top-right-radius: 4px;
    14551626}
    14561627
    14571628.wp-dialog .ui-dialog-title {
     
    14671638        font-size: 11px;
    14681639        line-height: 18px;
    14691640        color: #e5e5e5;
    1470 }
    1471 
    1472 .wp-dialog {
    1473         background-color: #fff;
    1474         -webkit-border-top-left-radius: 4px;
    1475         -webkit-border-top-right-radius: 4px;
    1476         border-top-left-radius: 4px;
    1477         border-top-right-radius: 4px;
    1478 }
    1479 
    1480 .wp-dialog .ui-dialog-titlebar {
    14811641        -webkit-border-top-left-radius: 3px;
     1642        border-top-left-radius: 3px;
    14821643        -webkit-border-top-right-radius: 3px;
    1483         border-top-left-radius: 3px;
    14841644        border-top-right-radius: 3px;
    14851645}
    14861646
     1647.wp-dialog .ui-dialog-content {
     1648        padding: 0;
     1649}
     1650
    14871651.wp-dialog .ui-dialog-titlebar-close {
    1488         position: absolute;
     1652        cursor: pointer;
     1653        -webkit-appearance: none;
     1654        border: 0;
    14891655        width: 29px;
    14901656        height: 16px;
    1491         top: 2px;
     1657        top: 13px;
    14921658        right: 6px;
    14931659        background: url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;
    1494         padding: 0;
    14951660}
    14961661
    1497 .rtl .wp-dialog .ui-dialog-titlebar-close {
    1498         right: auto;
    1499         left: 6px;
     1662.wp-dialog .ui-dialog-titlebar-close .ui-button-text {
     1663        display: none;
    15001664}
    15011665
    15021666.wp-dialog .ui-dialog-titlebar-close:hover,
     
    15051669}
    15061670
    15071671.ui-widget-overlay {
     1672        z-index: 300001;
    15081673        background-color: #000;
    15091674        opacity: 0.6;
    15101675        filter: alpha(opacity=60);
    15111676}
    15121677
     1678.rtl .wp-dialog .ui-dialog-titlebar-close {
     1679        right: auto;
     1680        left: 6px;
     1681}
     1682
    15131683/*
    15141684RTL
    15151685*/
     
    21132283                background-size: 19px 69px;
    21142284        }
    21152285}
    2116 
  • wp-includes/css/jquery-ui-dialog.css

     
    1 /*
    2  * jQuery UI CSS Framework @VERSION
     1/*!
     2 * jQuery UI CSS Framework 1.10.1
     3 * http://jqueryui.com
    34 *
    4  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    5  * Dual licensed under the MIT or GPL Version 2 licenses.
     5 * Copyright 2013 jQuery Foundation and other contributors
     6 * Released under the MIT license.
    67 * http://jquery.org/license
    78 *
    89 * http://docs.jquery.com/UI/Theming/API
     
    1011
    1112/* Layout helpers
    1213----------------------------------*/
    13 .ui-helper-hidden { display: none; }
    14 .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
    15 .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
    16 .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
    17 .ui-helper-clearfix { display: inline-block; }
    18 /* required comment for clearfix to work in Opera \*/
    19 * html .ui-helper-clearfix { height:1%; }
    20 .ui-helper-clearfix { display:block; }
    21 /* end clearfix */
    22 .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
     14.ui-helper-hidden {
     15        display: none;
     16}
     17.ui-helper-hidden-accessible {
     18        border: 0;
     19        clip: rect(0 0 0 0);
     20        height: 1px;
     21        margin: -1px;
     22        overflow: hidden;
     23        padding: 0;
     24        position: absolute;
     25        width: 1px;
     26}
     27.ui-helper-reset {
     28        margin: 0;
     29        padding: 0;
     30        border: 0;
     31        outline: 0;
     32        line-height: 1.3;
     33        text-decoration: none;
     34        font-size: 100%;
     35        list-style: none;
     36}
     37.ui-helper-clearfix:before,
     38.ui-helper-clearfix:after {
     39        content: "";
     40        display: table;
     41        border-collapse: collapse;
     42}
     43.ui-helper-clearfix:after {
     44        clear: both;
     45}
     46.ui-helper-clearfix {
     47        min-height: 0; /* support: IE7 */
     48}
     49.ui-helper-zfix {
     50        width: 100%;
     51        height: 100%;
     52        top: 0;
     53        left: 0;
     54        position: absolute;
     55        opacity: 0;
     56        filter:Alpha(Opacity=0);
     57}
    2358
     59.ui-front {
     60        z-index: 100;
     61}
    2462
     63
    2564/* Interaction Cues
    2665----------------------------------*/
    27 .ui-state-disabled { cursor: default !important; }
     66.ui-state-disabled {
     67        cursor: default !important;
     68}
    2869
    2970
    3071/* Icons
    3172----------------------------------*/
    3273
    3374/* states and images */
    34 .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
     75.ui-icon {
     76        display: block;
     77        text-indent: -99999px;
     78        overflow: hidden;
     79        background-repeat: no-repeat;
     80}
    3581
    3682
    3783/* Misc visuals
    3884----------------------------------*/
    3985
    4086/* Overlays */
    41 .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
     87.ui-widget-overlay {
     88        position: fixed;
     89        top: 0;
     90        left: 0;
     91        width: 100%;
     92        height: 100%;
     93}
    4294
    43 /*
    44  * jQuery UI Resizable
     95
     96/*!
     97 * jQuery UI Resizable 1.10.1
     98 * http://jqueryui.com
    4599 *
    46  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    47  * Dual licensed under the MIT or GPL Version 2 licenses.
     100 * Copyright 2013 jQuery Foundation and other contributors
     101 * Released under the MIT license.
    48102 * http://jquery.org/license
    49103 *
    50104 * http://docs.jquery.com/UI/Resizable#theming
    51105 */
    52 .ui-resizable { position: relative;}
    53 .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
    54 .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
    55 .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
    56 .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
    57 .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
    58 .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
    59 .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
    60 .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
    61 .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
    62 .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
     106.ui-resizable {
     107        position: relative;
     108}
     109.ui-resizable-handle {
     110        position: absolute;
     111        font-size: 0.1px;
     112        display: block;
     113}
     114.ui-resizable-disabled .ui-resizable-handle,
     115.ui-resizable-autohide .ui-resizable-handle {
     116        display: none;
     117}
     118.ui-resizable-n {
     119        cursor: n-resize;
     120        height: 7px;
     121        width: 100%;
     122        top: -5px;
     123        left: 0;
     124}
     125.ui-resizable-s {
     126        cursor: s-resize;
     127        height: 7px;
     128        width: 100%;
     129        bottom: -5px;
     130        left: 0;
     131}
     132.ui-resizable-e {
     133        cursor: e-resize;
     134        width: 7px;
     135        right: -5px;
     136        top: 0;
     137        height: 100%;
     138}
     139.ui-resizable-w {
     140        cursor: w-resize;
     141        width: 7px;
     142        left: -5px;
     143        top: 0;
     144        height: 100%;
     145}
     146.ui-resizable-se {
     147        cursor: se-resize;
     148        width: 12px;
     149        height: 12px;
     150        right: 1px;
     151        bottom: 1px;
     152}
     153.ui-resizable-sw {
     154        cursor: sw-resize;
     155        width: 9px;
     156        height: 9px;
     157        left: -5px;
     158        bottom: -5px;
     159}
     160.ui-resizable-nw {
     161        cursor: nw-resize;
     162        width: 9px;
     163        height: 9px;
     164        left: -5px;
     165        top: -5px;
     166}
     167.ui-resizable-ne {
     168        cursor: ne-resize;
     169        width: 9px;
     170        height: 9px;
     171        right: -5px;
     172        top: -5px;
     173}
    63174
    64 /*
    65  * jQuery UI Dialog
     175/*!
     176 * jQuery UI Dialog 1.10.1
     177 * http://jqueryui.com
    66178 *
    67  * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
    68  * Dual licensed under the MIT or GPL Version 2 licenses.
     179 * Copyright 2013 jQuery Foundation and other contributors
     180 * Released under the MIT license.
    69181 * http://jquery.org/license
    70182 *
    71183 * http://docs.jquery.com/UI/Dialog#theming
    72184 */
    73 .wp-dialog { position: absolute; width: 300px; overflow: hidden; }
    74 .wp-dialog .ui-dialog-titlebar { position: relative; }
    75 .wp-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
    76 .wp-dialog .ui-dialog-content { position: relative; border: 0; padding: 0; background: none; overflow: auto; zoom: 1; }
    77 .wp-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
    78 .wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
    79 .wp-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
    80 .wp-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
    81 .ui-draggable .ui-dialog-titlebar { cursor: move; }
     185.ui-dialog {
     186        position: absolute;
     187        top: 0;
     188        left: 0;
     189        padding: .2em;
     190        outline: 0;
     191}
     192.ui-dialog .ui-dialog-titlebar {
     193        padding: .4em 1em;
     194        position: relative;
     195}
     196.ui-dialog .ui-dialog-title {
     197        float: left;
     198        margin: .1em 0;
     199        white-space: nowrap;
     200        width: 90%;
     201        overflow: hidden;
     202        text-overflow: ellipsis;
     203}
     204.ui-dialog .ui-dialog-titlebar-close {
     205        position: absolute;
     206        right: .3em;
     207        top: 50%;
     208        width: 21px;
     209        margin: -10px 0 0 0;
     210        padding: 1px;
     211        height: 20px;
     212}
     213.ui-dialog .ui-dialog-content {
     214        position: relative;
     215        border: 0;
     216        padding: .5em 1em;
     217        background: none;
     218        overflow: auto;
     219}
     220.ui-dialog .ui-dialog-buttonpane {
     221        text-align: left;
     222        border-width: 1px 0 0 0;
     223        background-image: none;
     224        margin-top: .5em;
     225        padding: .3em 1em .5em .4em;
     226}
     227.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
     228        float: right;
     229}
     230.ui-dialog .ui-dialog-buttonpane button {
     231        margin: .5em .4em .5em 0;
     232        cursor: pointer;
     233}
     234.ui-dialog .ui-resizable-se {
     235        width: 12px;
     236        height: 12px;
     237        right: -5px;
     238        bottom: -5px;
     239        background-position: 16px 16px;
     240}
     241.ui-draggable .ui-dialog-titlebar {
     242        cursor: move;
     243}
    82244
    83245/* WP jQuery Dialog Theme */
    84246.wp-dialog {
     247        padding: 0;
     248        z-index: 300002;
    85249        border: 1px solid #999;
    86250        -webkit-box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
    87251        box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
     252        background-color: #f5f5f5;
     253        -webkit-border-top-left-radius: 4px;
     254        border-top-left-radius: 4px;
     255        -webkit-border-top-right-radius: 4px;
     256        border-top-right-radius: 4px;
    88257}
    89258
    90259.wp-dialog .ui-dialog-title {
     
    100269        font-size: 11px;
    101270        line-height: 18px;
    102271        color: #e5e5e5;
    103 }
    104 
    105 .wp-dialog {
    106         background-color: #f5f5f5;
    107         -webkit-border-top-left-radius: 4px;
    108         border-top-left-radius: 4px;
    109         -webkit-border-top-right-radius: 4px;
    110         border-top-right-radius: 4px;
    111 }
    112 
    113 .wp-dialog .ui-dialog-titlebar {
    114272        -webkit-border-top-left-radius: 3px;
    115273        border-top-left-radius: 3px;
    116274        -webkit-border-top-right-radius: 3px;
    117275        border-top-right-radius: 3px;
    118276}
    119277
     278.wp-dialog .ui-dialog-content {
     279        padding: 0;
     280}
     281
    120282.wp-dialog .ui-dialog-titlebar-close {
    121         position: absolute;
     283        cursor: pointer;
     284        -webkit-appearance: none;
     285        border: 0;
    122286        width: 29px;
    123287        height: 16px;
    124         top: 2px;
     288        top: 13px;
    125289        right: 6px;
    126290        background: url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;
    127         padding: 0;
    128291}
    129292
     293.wp-dialog .ui-dialog-titlebar-close .ui-button-text {
     294        display: none;
     295}
     296
    130297.wp-dialog .ui-dialog-titlebar-close:hover,
    131298.wp-dialog .ui-dialog-titlebar-close:focus {
    132299        background-position: -87px -32px;
    133300}
    134301
    135302.ui-widget-overlay {
     303        z-index: 300001;
    136304        background-color: #000;
    137305        opacity: 0.6;
    138306        filter: alpha(opacity=60);