Changeset 2583885
- Timestamp:
- 08/17/2021 04:20:50 AM (5 years ago)
- Location:
- wayfinder/trunk
- Files:
-
- 3 edited
-
css/editor-style.css (modified) (4 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wayfinder/trunk/css/editor-style.css
r2578331 r2583885 15 15 .wp-block.rich-text { 16 16 padding: 10px 13px; 17 } 18 19 /*BUTTONS*/ 20 .wp-block-button__link { 21 background-color: #862633; 22 border-radius: 0; 17 23 } 18 24 … … 52 58 padding: 0; 53 59 } 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) { 55 61 outline: 1px dashed rgba(0,0,0,.15); 56 62 } … … 58 64 59 65 /*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 { 64 70 outline: 1px dashed var(--wp-admin-theme-color); 65 71 } 66 72 67 73 /*SELECTED HOVER*/ 68 . wayfinder-outline *[data-title].is-selected:hover. {74 .block-editor-page.wayfinder-outline *[data-title].is-selected:hover. { 69 75 outline: 1px solid var(--wp-admin-theme-color); 70 76 } 71 77 72 78 /*BLOCK TITLE*/ 73 . wayfinder-title *[data-title]:hover:before {79 .block-editor-page.wayfinder-title *[data-title]:hover:before { 74 80 content: attr(data-title); 75 81 position: absolute; … … 95 101 96 102 /*BLOCK CLASSES*/ 97 . wayfinder-classes *[data-title]:hover:after {103 .block-editor-page.wayfinder-classes *[data-title]:hover:after { 98 104 content: attr(class); 99 105 position: absolute; -
wayfinder/trunk/index.php
r2579018 r2583885 4 4 * Plugin URI: https://wordpress.org/plugins/wayfinder 5 5 * Description: Easily select and identify nested blocks in the editor. 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: THE MOLITOR 8 8 * Author URI: https://themolitor.com … … 10 10 */ 11 11 12 $wayfinder_version = '1.0. 7';12 $wayfinder_version = '1.0.8'; 13 13 14 14 -
wayfinder/trunk/readme.txt
r2579018 r2583885 3 3 Tags: block, finder, helper, identifier, selector 4 4 Requires at least: 4.7 5 Tested up to: 5. 76 Stable tag: 1.0. 75 Tested up to: 5.8 6 Stable tag: 1.0.8 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 52 52 == Changelog == 53 53 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 54 59 = 1.0.7 = 55 60
Note: See TracChangeset
for help on using the changeset viewer.