Plugin Directory

Changeset 2562973

Timestamp:
07/12/2021 04:07:31 PM (3 years ago)
Author:
yansern
Message:

Update Editing Toolkit Plugin to 3.10498

Location:
full-site-editing/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • full-site-editing/trunk/common/dist/common.asset.php

    r2542579 r2562973  
    1 <?php return array('dependencies' => array('wp-polyfill'), 'version' => '04ccbd2f32c54fb6e0702e88cca0465c');
     1<?php return array('dependencies' => array('wp-polyfill'), 'version' => '');
  • full-site-editing/trunk/common/dist/common.css

    r2542579 r2562973  
    1 body.hide-homepage-title .editor-post-title{opacity:.4}body.slider-width-workaround .interface-interface-skeleton__editor{max-width:100%}body.font-smoothing-antialiased,body.font-smoothing-antialiased #wpadminbar *,body.font-smoothing-antialiased #wpwrap{text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
     1body.hide-homepage-title .editor-post-title{opacity:.4}body.slider-width-workaround .interface-interface-skeleton__editor{max-width:100%}}
  • full-site-editing/trunk/common/dist/common.rtl.css

    r2542579 r2562973  
    1 body.hide-homepage-title .editor-post-title{opacity:.4}body.slider-width-workaround .interface-interface-skeleton__editor{max-width:100%}body.font-smoothing-antialiased,body.font-smoothing-antialiased #wpadminbar *,body.font-smoothing-antialiased #wpwrap{text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
     1body.hide-homepage-title .editor-post-title{opacity:.4}body.slider-width-workaround .interface-interface-skeleton__editor{max-width:100%}}
  • full-site-editing/trunk/common/index.php

    r2542579 r2562973  
    8888 */
    8989function use_font_smooth_antialiased() {
    90     if ( defined( 'A8C_USE_FONT_SMOOTHING_ANTIALIASED' ) && A8C_USE_FONT_SMOOTHING_ANTIALIASED ) {
    91         return true;
    92     }
    93 
    94     return apply_filters( 'a8c_use_font_smoothing_antialiased', false );
     90    if ( defined( 'A8C_USE_FONT_SMOOTHING_ANTIALIASED' ) ) {
     91        return ;
     92    }
     93
     94    return ;
    9595}
    9696
     
    125125    }
    126126
    127     if ( use_font_smooth_antialiased() ) {
     127    if ( use_font_smooth_antialiased() ) {
    128128        // Extra space needed because the `legacy-color-*` class isn't adding
    129129        // a leading space and breaking this class string.
  • full-site-editing/trunk/common/index.scss

    r2542579 r2562973  
    1313}
    1414
    15 %font-smoothing-antialiased {
     15font-smoothing-antialiased {
    1616    text-rendering: optimizeLegibility;
    1717    -moz-osx-font-smoothing: grayscale;
     
    1919}
    2020
    21 body.font-smoothing-antialiased {
    22     @extend %font-smoothing-antialiased;
     21@media ( -webkit-min-device-pixel-ratio: 1.25 ), ( min-resolution: 120dpi ) {
     22    body.font-smoothing-antialiased {
     23        @include font-smoothing-antialiased;
    2324
    24     // Overriding an existing core WP rule so the ID selector is necessary
    25     // stylelint-disable-next-line selector-max-id
    26     #wpwrap {
    27         @extend %font-smoothing-antialiased;
    28     }
     25    // Overriding an existing core WP rule so the ID selector is necessary
     26    // stylelint-disable-next-line selector-max-id
     27    #wpwrap {
     28        font-smoothing-antialiased;
     29    }
    2930
    30     // stylelint-disable-next-line selector-max-id
    31     #wpadminbar * {
    32         @extend %font-smoothing-antialiased;
     31        // stylelint-disable-next-line selector-max-id
     32        #wpadminbar * {
     33            @include font-smoothing-antialiased;
     34        }
    3335    }
    3436}
  • full-site-editing/trunk/full-site-editing-plugin.php

    r2562928 r2562973  
    33 * Plugin Name: WordPress.com Editing Toolkit
    44 * Description: Enhances your page creation workflow within the Block Editor.
    5  * Version: 3.10492
     5 * Version: 3.1049
    66 * Author: Automattic
    77 * Author URI: https://automattic.com/wordpress-plugins/
     
    4343 * @var string
    4444 */
    45 define( 'A8C_ETK_PLUGIN_VERSION', '3.10492' );
     45define( 'A8C_ETK_PLUGIN_VERSION', '3.1049' );
    4646
    4747// Always include these helper files for dotcom FSE.
  • full-site-editing/trunk/readme.txt

    r2562928 r2562973  
    44Requires at least: 5.5
    55Tested up to: 5.6
    6 Stable tag: 3.10492
     6Stable tag: 3.1049
    77Requires PHP: 5.6.20
    88License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.