Plugin Directory

Changeset 2361526


Ignore:
Timestamp:
08/14/2020 11:07:19 PM (6 years ago)
Author:
sebaxtian
Message:

v0.2.9

Location:
scss-library/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • scss-library/trunk/scss-library.php

    r2358088 r2361526  
    44Description: Adds support for SCSS stylesheets to wp_enqueue_style.
    55Author: Juan Sebastián Echeverry
    6 Version: 0.2.8
     6Version: 0.2.9
    77Text Domain: scsslib
    88
     
    2525
    2626// Si estamos usando wp-cli, no correr el plugin
    27 if ( defined( 'WP_CLI' ) && WP_CLI ) {
     27if (defined('WP_CLI') && WP_CLI) {
    2828    return;
    2929}
  • scss-library/trunk/src/ScssLibrary.php

    r2270813 r2361526  
    348348                'href'  => '#',
    349349                'meta'  => [
    350                     'class' => $opciones['develop'] ? 'sl-alert' : '',
     350                    'class' => (isset($opciones['develop']) && $opciones['develop']) ? 'sl-alert' : '',
    351351                    'html'  => '<style>
    352352                        #wpadminbar .menupop.sl-alert > a.ab-item { color: white; background: #9c3e3d; }
Note: See TracChangeset for help on using the changeset viewer.