Changeset 2795730
- Timestamp:
- 10/07/2022 03:51:26 PM (3 years ago)
- Location:
- wayfinder/trunk
- Files:
-
- 3 edited
-
css/editor-style.css (modified) (6 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wayfinder/trunk/css/editor-style.css
r2600183 r2795730 35 35 36 36 /*IMAGE BLOCK*/ 37 figure.wp-block-image.wp-block {37 .block-editor-page.wayfinder-outline figure.wp-block-image.wp-block { 38 38 padding: 0; 39 39 line-height: 0; … … 43 43 line-height: 1.8em; 44 44 } 45 45 46 46 47 /*SOCIAL BUTTONS*/ … … 77 78 78 79 /*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 { 80 81 content: attr(data-title); 81 82 position: absolute; … … 101 102 102 103 /*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 { 104 105 content: attr(class); 105 106 position: absolute; … … 131 132 } 132 133 134 /* 135 COVER BLOCK STUFF 136 */ 137 138 133 139 /*COVER BLOCK TITLE ONLY*/ 134 140 .block-editor-page.wayfinder-title:not(.wayfinder-classes) .wp-block-cover:hover:after { … … 200 206 opacity: 1; 201 207 } 208 209 /* 210 SEPARATOR 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 4 4 * Plugin URI: https://wordpress.org/plugins/wayfinder 5 5 * Description: Easily select and identify nested blocks in the editor. 6 * Version: 1.1. 36 * Version: 1.1.5 7 7 * Author: THE MOLITOR 8 8 * Author URI: https://themolitor.com … … 10 10 */ 11 11 12 $wayfinder_version = '1.1. 3';12 $wayfinder_version = '1.1.5'; 13 13 14 14 -
wayfinder/trunk/readme.txt
r2666611 r2795730 3 3 Tags: block, finder, helper, identifier, selector 4 4 Requires at least: 4.7 5 Tested up to: 5.96 Stable tag: 1.1. 35 Tested up to: 6.0 6 Stable tag: 1.1.5 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 51 51 52 52 == 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. 53 61 54 62 = 1.1.3 =
Note: See TracChangeset
for help on using the changeset viewer.