Plugin Directory

Changeset 2795730


Ignore:
Timestamp:
10/07/2022 03:51:26 PM (3 years ago)
Author:
themolitor
Message:

version 1.1.5 — improved support for gallery-based image blocks.

Location:
wayfinder/trunk
Files:
3 edited

Legend:

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

    r2600183 r2795730  
    3535
    3636/*IMAGE BLOCK*/
    37 figure.wp-block-image.wp-block {
     37.block-editor-page.wayfinder-outline figure.wp-block-image.wp-block {
    3838    padding: 0;
    3939    line-height: 0;
     
    4343        line-height: 1.8em;
    4444    }
     45   
    4546   
    4647/*SOCIAL BUTTONS*/
     
    7778
    7879/*BLOCK TITLE*/
    79 .block-editor-page.wayfinder-title *[data-title]:not(.wp-block-cover):hover:before {
     80.block-editor-page.wayfinder-title *[data-title]:not(.wp-block-cover):not(.wp-block-separator.is-style-dots):hover:before {
    8081    content: attr(data-title);
    8182    position: absolute;
     
    101102
    102103/*BLOCK CLASSES*/
    103 .block-editor-page.wayfinder-classes *[data-title]:not(.wp-block-cover):hover:after {   
     104.block-editor-page.wayfinder-classes *[data-title]:not(.wp-block-cover):not(.wp-block-separator.is-style-dots):hover:after {   
    104105    content: attr(class);
    105106    position: absolute;
     
    131132}
    132133
     134/*
     135COVER BLOCK STUFF
     136*/
     137
     138
    133139/*COVER BLOCK TITLE ONLY*/
    134140.block-editor-page.wayfinder-title:not(.wayfinder-classes) .wp-block-cover:hover:after {
     
    200206    opacity: 1;
    201207}
     208
     209/*
     210SEPARATOR DOTS STUFF
     211*/
     212
     213/*SEPARATOR DOTS BLOCK TITLE ONLY*/
     214.block-editor-page.wayfinder-title:not(.wayfinder-classes) .wp-block-separator.is-style-dots:hover:after {
     215    content: attr(data-title);
     216    position: absolute;
     217    bottom: 100% !important;
     218    left: -1px !important;
     219    right: auto !important;
     220    top: auto !important;
     221    font-size: 10px;
     222    background: var(--wp-admin-theme-color);
     223    color: #fff;
     224    padding: 3px 5px;
     225    cursor: pointer;
     226    line-height: 10px;
     227    display: inline-block;
     228    width: auto;
     229    height: auto;
     230    transform: unset;
     231    font-weight: normal;
     232    text-transform: none;
     233    min-height: 10px;
     234    opacity: 1;
     235}
     236/*SEPARATOR DOTS BLOCK CLASSES ONLY*/
     237.block-editor-page.wayfinder-classes:not(.wayfinder-title) .wp-block-separator.is-style-dots:hover:after {
     238    content: attr(class);
     239    position: absolute;
     240    bottom: 100% !important;
     241    left: -1px !important;
     242    right: auto !important;
     243    top: auto !important;
     244    font-size: 10px;
     245    background: var(--wp-admin-theme-color);
     246    color: #fff;
     247    padding: 3px 5px;
     248    cursor: pointer;
     249    line-height: 10px;
     250    display: inline-block;
     251    width: auto;
     252    height: auto;
     253    transform: unset;
     254    font-weight: normal;
     255    text-transform: none;
     256    min-height: 10px;
     257    opacity: 1;
     258}
     259/*SEPARATOR DOTS BLOCK TITLE + CLASSES*/
     260.block-editor-page.wayfinder-classes.wayfinder-title .wp-block-separator.is-style-dots:hover:after {
     261    content: attr(data-title) ' / ' attr(class);
     262    position: absolute;
     263    bottom: 100% !important;
     264    left: -1px !important;
     265    right: auto !important;
     266    top: auto !important;
     267    font-size: 10px;
     268    background: var(--wp-admin-theme-color);
     269    color: #fff;
     270    padding: 3px 5px;
     271    cursor: pointer;
     272    line-height: 10px;
     273    display: inline-block;
     274    width: auto;
     275    height: auto;
     276    transform: unset;
     277    font-weight: normal;
     278    text-transform: none;
     279    min-height: 10px;
     280    opacity: 1;
     281}
  • wayfinder/trunk/index.php

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

    r2666611 r2795730  
    33Tags: block, finder, helper, identifier, selector
    44Requires at least: 4.7
    5 Tested up to: 5.9
    6 Stable tag: 1.1.3
     5Tested up to: 6.0
     6Stable tag: 1.1.5
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    5151
    5252== Changelog ==
     53
     54= 1.1.5 =
     55
     56* Improved support for gallery-based image blocks.
     57
     58= 1.1.4 =
     59
     60* Improved support for dot-based separator blocks.
    5361
    5462= 1.1.3 =
Note: See TracChangeset for help on using the changeset viewer.