Make WordPress Core

Ticket #26952: 26952.16.patch

File 26952.16.patch, 3.8 KB (added by iseulde, 11 years ago)
  • src/wp-includes/css/editor.css

     
    7373        width: calc( 100% - 36px );
    7474}
    7575
     76.mce-wp-help .mce-window-head {
     77        border-bottom: none;
     78}
     79
    7680.mce-textbox {
    7781        border: 1px solid #ddd;
    7882        -webkit-border-radius: 0;
  • src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

     
    182182                        url: tinymce.baseURL + '/wp-mce-help.php',
    183183                        width: 450,
    184184                        height: 420,
    185                         inline: 1
     185                        inline: 1,
     186                        classes: 'wp-help'
    186187                });
    187188        });
    188189
  • src/wp-includes/js/tinymce/wp-mce-help.php

     
    2727                min-width: 0;
    2828        }
    2929
    30         #tabs-wrap {
     30        .wp-core-ui #tabs {
     31                margin-top: 1px;
     32                padding: 0 6px;
    3133                position: absolute;
    3234                top: 0;
     35                right: 0;
     36                left: 0;
     37                height: 31px;
     38                z-index: 1;
    3339        }
    3440
    35         #tabs {
    36                 box-shadow: 0 3px 5px rgba( 255, 255, 255, 0.2 );
    37                 margin: 0;
    38                 padding: 0;
     41        .wp-core-ui #tabs a {
    3942                position: relative;
    40                 -webkit-user-select: none;
    41                 -moz-user-select: none;
    42                 -ms-user-select: none;
    43                 user-select: none;
    44         }
    45 
    46         #tabs a {
    47                 -webkit-transition: none;
    48                 transition: none;
    49         }
    50        
    51         #tabs-wrap #tabs > a {
    5243                float: left;
    53                 font-size: 14px;
     44                padding: 6px 10px;
     45                margin: 0;
    5446                height: 18px;
    5547                line-height: 18px;
    56                 margin: 0;
    57                 padding: 7px 10px;
    58                 position: relative;
    5948                text-decoration: none;
    60                 border-right: 1px solid #ddd;
    61                 background-color: #eee;
    62                 color: inherit;
    63         }
    64 
    65         #tabs > a:active,
    66         #tabs > a:focus {
    67                 outline: none;
     49                -webkit-transition: none;
     50                transition: none;
    6851        }
    6952
    70         #tabs-wrap #tabs .active,
    71         #tabs-wrap #tabs .active:hover {
    72                 color: #333;
     53        #tabs a.active {
     54                margin: -1px -1px 0;
    7355                background: #fff;
    74                 border-bottom: 1px solid #fff;
     56                border: 1px solid #ddd;
     57                border-bottom: none;
     58                color: #333;
    7559        }
    7660
    7761        #tabs .active:after {
     
    8367                border-top: 1px solid #ddd;
    8468                height: 360px;
    8569                margin: 0;
    86                 margin-top: 32px;
    87                 overflow-y: scroll;
     70                margin-top: 30px;
     71                overflow: auto;
    8872                padding: 10px 16px;
    8973        }
    9074
     
    151135        document.body.className = document.body.className.replace(/windows/, 'macos');
    152136</script>
    153137
    154 <div id="tabs-wrap">
    155         <div id="tabs">
    156                 <a id="tab1" href="javascript:flipTab(1)" title="<?php esc_attr_e('Basics of Rich Editing'); ?>" accesskey="1" class="active"><?php _e('Basics'); ?></a>
    157                 <a id="tab2" href="javascript:flipTab(2)" title="<?php esc_attr_e('Advanced use of the Rich Editor'); ?>" accesskey="2"><?php _e('Advanced'); ?></a>
    158                 <a id="tab3" href="javascript:flipTab(3)" title="<?php esc_attr_e('Hotkeys'); ?>" accesskey="3"><?php _e('Hotkeys'); ?></a>
    159                 <a id="tab4" href="javascript:flipTab(4)" title="<?php esc_attr_e('About the software'); ?>" accesskey="4"><?php _e('About'); ?></a>
    160         </div>
     138<div id="tabs">
     139        <a id="tab1" href="javascript:flipTab(1)" title="<?php esc_attr_e('Basics of Rich Editing'); ?>" accesskey="1" class="active"><?php _e('Basics'); ?></a>
     140        <a id="tab2" href="javascript:flipTab(2)" title="<?php esc_attr_e('Advanced use of the Rich Editor'); ?>" accesskey="2"><?php _e('Advanced'); ?></a>
     141        <a id="tab3" href="javascript:flipTab(3)" title="<?php esc_attr_e('Hotkeys'); ?>" accesskey="3"><?php _e('Hotkeys'); ?></a>
     142        <a id="tab4" href="javascript:flipTab(4)" title="<?php esc_attr_e('About the software'); ?>" accesskey="4"><?php _e('About'); ?></a>
    161143</div>
    162144
    163145<div id="flipper" class="wrap">