Plugin Directory

Changeset 2824652


Ignore:
Timestamp:
11/26/2022 06:04:36 PM (3 years ago)
Author:
themolitor
Message:

1.1.6

  • Added support for WordPress 6.1.
  • Fixed issue with list blocks in WP 6.1.
  • Improved label design for block classes.
  • Improved styling to have less impact on editor layout.
Location:
wayfinder/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wayfinder/trunk/css/editor-style.css

    r2795730 r2824652  
    55    position: relative;
    66    outline: 1px dashed transparent;
    7     padding: 18px 15px;
     7    padding: 15px 12px;
    88    overflow: visible !important;
    99}
     
    2323}
    2424
    25 /*UL BLOCK*/
     25/*UL + OL BLOCK*/
    2626ul.wp-block:not(.block-list-appender),
    2727ol.wp-block:not(.block-list-appender) {
    2828    list-style-position: inside;
    2929}
     30    ul.wp-block:not(.block-list-appender) li > div.block-editor-rich-text__editable,
     31    ol.wp-block:not(.block-list-appender) li > div.block-editor-rich-text__editable {
     32        width: calc(100% - 25px);
     33        display: inline-block;
     34    }
    3035
    3136/*SEPARATOR*/
     
    117122    display: inline-block;
    118123    width: auto;
    119     height: 16px;
     124    height: 12px;
    120125    transform: unset;
    121126    font-weight: normal;
  • wayfinder/trunk/index.php

    r2795730 r2824652  
    44 * Plugin URI: https://wordpress.org/plugins/wayfinder
    55 * Description: Easily select and identify nested blocks in the editor.
    6  * Version: 1.1.5
     6 * Version: 1.1.6
    77 * Author: THE MOLITOR
    88 * Author URI: https://themolitor.com
     
    1010*/
    1111
    12 $wayfinder_version = '1.1.5';
     12$wayfinder_version = '1.1.6';
    1313
    1414
  • wayfinder/trunk/readme.txt

    r2795730 r2824652  
    33Tags: block, finder, helper, identifier, selector
    44Requires at least: 4.7
    5 Tested up to: 6.0
    6 Stable tag: 1.1.5
     5Tested up to: 6.1
     6Stable tag: 1.1.6
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    5151
    5252== Changelog ==
     53
     54= 1.1.6 =
     55
     56* Added support for WordPress 6.1.
     57* Fixed issue with list blocks in WP 6.1.
     58* Improved label design for block classes.
     59* Improved styling to have less impact on editor layout.
     60
    5361
    5462= 1.1.5 =
Note: See TracChangeset for help on using the changeset viewer.