Plugin Directory

Changeset 3065494

Timestamp:
04/05/2024 01:30:29 PM (4 months ago)
Author:
inc2734
Message:

Version up. v20.5.2

Location:
snow-monkey-blocks/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • snow-monkey-blocks/trunk/App/Setup/Blocks.php

    r3060212 r3065494  
    2727                    $style    = $p->get_attribute( 'style' );
    2828                    $property = '--smb--flex-grow:';
    29                     if ( $style && false === strpos( $style, $property ) ) {
     29                    if ( false === strpos( $style, $property ) ) {
    3030                        $style = $style ? $style . ';' : $style;
    3131                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['flexGrow'] ) );
     
    3737                    $style    = $p->get_attribute( 'style' );
    3838                    $property = '--smb--flex-shrink:';
    39                     if ( $style && false === strpos( $style, $property ) ) {
     39                    if ( false === strpos( $style, $property ) ) {
    4040                        $style = $style ? $style . ';' : $style;
    4141                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['flexShrink'] ) );
     
    4747                    $style    = $p->get_attribute( 'style' );
    4848                    $property = '--smb--flex-basis:';
    49                     if ( $style && false === strpos( $style, $property ) ) {
     49                    if ( false === strpos( $style, $property ) ) {
    5050                        $style = $style ? $style . ';' : $style;
    5151                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['flexBasis'] ) );
     
    5757                    $style    = $p->get_attribute( 'style' );
    5858                    $property = '--smb--justify-self:';
    59                     if ( $style && false === strpos( $style, $property ) ) {
     59                    if ( false === strpos( $style, $property ) ) {
    6060                        $style = $style ? $style . ';' : $style;
    6161                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['justifySelf'] ) );
     
    6767                    $style    = $p->get_attribute( 'style' );
    6868                    $property = '--smb--align-self:';
    69                     if ( $style && false === strpos( $style, $property ) ) {
     69                    if ( false === strpos( $style, $property ) ) {
    7070                        $style = $style ? $style . ';' : $style;
    7171                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['alignSelf'] ) );
     
    7777                    $style    = $p->get_attribute( 'style' );
    7878                    $property = '--smb--grid-column:';
    79                     if ( $style && false === strpos( $style, $property ) ) {
     79                    if ( false === strpos( $style, $property ) ) {
    8080                        $style = $style ? $style . ';' : $style;
    8181                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['gridColumn'] ) );
     
    8787                    $style    = $p->get_attribute( 'style' );
    8888                    $property = '--smb--grid-row:';
    89                     if ( $style && false === strpos( $style, $property ) ) {
     89                    if ( false === strpos( $style, $property ) ) {
    9090                        $style = $style ? $style . ';' : $style;
    9191                        $p->set_attribute( 'style', trim( $style . $property . $block['attrs']['smb']['gridRow'] ) );
  • snow-monkey-blocks/trunk/readme.txt

    r3060281 r3065494  
    33Donate link: https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
    44Tags: gutenberg, block, blocks, editor, gutenberg blocks, page builder, landing page, microcopy, steps, call to action
    5 Stable tag: 20.5.1
     5Stable tag: 20.5.
    66Requires at least: 6.4
    77Tested up to: 6.5
     
    117117
    118118== Changelog ==
     119
     120
     121
     122
    119123
    120124= 20.5.1 =
  • snow-monkey-blocks/trunk/snow-monkey-blocks.php

    r3060281 r3065494  
    22/**
    33 * Plugin name: Snow Monkey Blocks
    4  * Version: 20.5.1
     4 * Version: 20.5.
    55 * Description: Gutenberg blocks collection made by MonkeyWrench.
    66 * Author: inc2734
Note: See TracChangeset for help on using the changeset viewer.