Plugin Directory

Changeset 2583885


Ignore:
Timestamp:
08/17/2021 04:20:50 AM (5 years ago)
Author:
themolitor
Message:

1.0.8 - adds support for WP 5.8 + fixes issue with title/classes/outline displaying on non-block editor pages.

Location:
wayfinder/trunk
Files:
3 edited

Legend:

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

    r2578331 r2583885  
    1515.wp-block.rich-text {
    1616    padding: 10px 13px;
     17}
     18
     19/*BUTTONS*/
     20.wp-block-button__link {
     21    background-color: #862633;
     22    border-radius: 0;
    1723}
    1824
     
    5258    padding: 0;
    5359}
    54 .wayfinder-spacer-outline .wp-block-spacer:not(.block-list-appender) {
     60.block-editor-page.wayfinder-spacer-outline .wp-block-spacer:not(.block-list-appender) {
    5561    outline: 1px dashed rgba(0,0,0,.15);
    5662}
     
    5864
    5965/*HOVER + FOCUS + SELECTED*/
    60 .wayfinder-outline *[data-title]:hover,
    61 .wayfinder-outline *[data-title]:focus,
    62 .wayfinder-outline *[data-title].is-selected,
    63 .wayfinder-outline *[data-title].has-child-selected {
     66.block-editor-page.wayfinder-outline *[data-title]:hover,
     67.block-editor-page.wayfinder-outline *[data-title]:focus,
     68.block-editor-page.wayfinder-outline *[data-title].is-selected,
     69.block-editor-page.wayfinder-outline *[data-title].has-child-selected {
    6470    outline: 1px dashed var(--wp-admin-theme-color);
    6571}
    6672
    6773/*SELECTED HOVER*/
    68 .wayfinder-outline *[data-title].is-selected:hover. {
     74.block-editor-page.wayfinder-outline *[data-title].is-selected:hover. {
    6975    outline: 1px solid var(--wp-admin-theme-color);
    7076}
    7177
    7278/*BLOCK TITLE*/
    73 .wayfinder-title *[data-title]:hover:before {
     79.block-editor-page.wayfinder-title *[data-title]:hover:before {
    7480    content: attr(data-title);
    7581    position: absolute;
     
    95101
    96102/*BLOCK CLASSES*/
    97 .wayfinder-classes *[data-title]:hover:after { 
     103.block-editor-page.wayfinder-classes *[data-title]:hover:after {   
    98104    content: attr(class);
    99105    position: absolute;
  • wayfinder/trunk/index.php

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

    r2579018 r2583885  
    33Tags: block, finder, helper, identifier, selector
    44Requires at least: 4.7
    5 Tested up to: 5.7
    6 Stable tag: 1.0.7
     5Tested up to: 5.8
     6Stable tag: 1.0.8
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    5252== Changelog ==
    5353
     54= 1.0.8 =
     55
     56* Added support for WordPress 5.8
     57* Fixed issue with title/classes/outlines showing on non-block editor pages.
     58
    5459= 1.0.7 =
    5560
Note: See TracChangeset for help on using the changeset viewer.