Plugin Directory

Changeset 2613970


Ignore:
Timestamp:
10/14/2021 12:08:57 AM (4 years ago)
Author:
diurno10
Message:

new version 2.0

Location:
editor-beautifier/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • editor-beautifier/trunk/css/beautifier.css

    r2582355 r2613970  
    120120/* END DESCRIPTION LABEL */
    121121
     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
    122134@media only screen and (max-width: 1440px) {
    123135    /* OLD VERSIONS */
  • editor-beautifier/trunk/editor-beautifier.php

    r2582357 r2613970  
    66  Author: Federico Cadierno
    77  Author URI: https://federicocadierno.com/
    8   Version: 1.8
     8  Version: 2.0
    99  Text Domain: editor-beautifier
    1010  License: GPLv3
     
    1717
    1818function 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);
    2021}
    2122 
  • editor-beautifier/trunk/readme.txt

    r2582357 r2613970  
    4848== Changelog ==
    4949
     50= 2.0, Oct 16 2021 =
     51* Fix block-editors colors depending on background lightness
     52
    5053= 1.8, Mar 01 2021 =
    5154* Fix block-editors styling
Note: See TracChangeset for help on using the changeset viewer.