Changeset 2613970
- Timestamp:
- 10/14/2021 12:08:57 AM (4 years ago)
- Location:
- editor-beautifier/trunk
- Files:
-
- 2 added
- 3 edited
-
css/beautifier.css (modified) (1 diff)
-
editor-beautifier.php (modified) (2 diffs)
-
js (added)
-
js/light-or-dark-bg.js (added)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
editor-beautifier/trunk/css/beautifier.css
r2582355 r2613970 120 120 /* END DESCRIPTION LABEL */ 121 121 122 /* IF BLOCK GROUP BACKGROUND IS LIGHT OR DARK */ 123 .wp-block-group.has-background[data-color="light-text"] .wp-block-group__inner-container > *::before { color: #ffffff} 124 .wp-block-group.has-background[data-color="light-text"] .wp-block-group__inner-container > * { border-color: #ffffff !important} 125 .wp-block-group.has-background[data-color="light-text"] > *::before { color: #ffffff} 126 .wp-block-group.has-background[data-color="light-text"] > * { border-color: #ffffff !important} 127 128 .wp-block-group.has-background[data-color="dark-text"] .wp-block-group__inner-container > *::before { color: #000000} 129 .wp-block-group.has-background[data-color="dark-text"] .wp-block-group__inner-container > * { border-color: #000000 !important} 130 .wp-block-group.has-background[data-color="dark-text"] > *::before { color: #000000} 131 .wp-block-group.has-background[data-color="dark-text"] > * { border-color: #000000 !important} 132 133 122 134 @media only screen and (max-width: 1440px) { 123 135 /* OLD VERSIONS */ -
editor-beautifier/trunk/editor-beautifier.php
r2582357 r2613970 6 6 Author: Federico Cadierno 7 7 Author URI: https://federicocadierno.com/ 8 Version: 1.88 Version: 2.0 9 9 Text Domain: editor-beautifier 10 10 License: GPLv3 … … 17 17 18 18 function editor_beautifier_load_files() { 19 wp_enqueue_style( 'beautifier-style', plugin_dir_url(__FILE__).'css/beautifier.css' ); 19 wp_enqueue_style( 'beautifier-style', plugin_dir_url(__FILE__).'css/beautifier.css' ); 20 wp_enqueue_script( 'light-or-dark-scripts', plugin_dir_url(__FILE__) . '/js/light-or-dark-bg.js', array( 'jquery' ), false, true); 20 21 } 21 22 -
editor-beautifier/trunk/readme.txt
r2582357 r2613970 48 48 == Changelog == 49 49 50 = 2.0, Oct 16 2021 = 51 * Fix block-editors colors depending on background lightness 52 50 53 = 1.8, Mar 01 2021 = 51 54 * Fix block-editors styling
Note: See TracChangeset
for help on using the changeset viewer.