Changeset 2361526
- Timestamp:
- 08/14/2020 11:07:19 PM (6 years ago)
- Location:
- scss-library/trunk
- Files:
-
- 2 edited
-
scss-library.php (modified) (2 diffs)
-
src/ScssLibrary.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scss-library/trunk/scss-library.php
r2358088 r2361526 4 4 Description: Adds support for SCSS stylesheets to wp_enqueue_style. 5 5 Author: Juan Sebastián Echeverry 6 Version: 0.2. 86 Version: 0.2.9 7 7 Text Domain: scsslib 8 8 … … 25 25 26 26 // Si estamos usando wp-cli, no correr el plugin 27 if ( defined( 'WP_CLI' ) && WP_CLI) {27 if (defined('WP_CLI') && WP_CLI) { 28 28 return; 29 29 } -
scss-library/trunk/src/ScssLibrary.php
r2270813 r2361526 348 348 'href' => '#', 349 349 'meta' => [ 350 'class' => $opciones['develop']? 'sl-alert' : '',350 'class' => (isset($opciones['develop']) && $opciones['develop']) ? 'sl-alert' : '', 351 351 'html' => '<style> 352 352 #wpadminbar .menupop.sl-alert > a.ab-item { color: white; background: #9c3e3d; }
Note: See TracChangeset
for help on using the changeset viewer.