@@ 270-277 (lines=8) @@ | ||
267 | ) |
|
268 | ); |
|
269 | ||
270 | if ( ! wp_style_is( 'jetpack-dops-style' ) ) { |
|
271 | wp_register_style( |
|
272 | 'jetpack-dops-style', |
|
273 | plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ), |
|
274 | array(), |
|
275 | JETPACK__VERSION |
|
276 | ); |
|
277 | } |
|
278 | ||
279 | wp_enqueue_style( |
|
280 | 'jetpack-idc-css', |
@@ 282-284 (lines=3) @@ | ||
279 | require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' ); |
|
280 | jetpack_register_genericons(); |
|
281 | ||
282 | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) { |
|
283 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
|
284 | } |
|
285 | ||
286 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) ); |
|
287 | } |
@@ 3520-3527 (lines=8) @@ | ||
3517 | function admin_banner_styles() { |
|
3518 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
3519 | ||
3520 | if ( ! wp_style_is( 'jetpack-dops-style' ) ) { |
|
3521 | wp_register_style( |
|
3522 | 'jetpack-dops-style', |
|
3523 | plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ), |
|
3524 | array(), |
|
3525 | JETPACK__VERSION |
|
3526 | ); |
|
3527 | } |
|
3528 | ||
3529 | wp_enqueue_style( |
|
3530 | 'jetpack', |
|
@@ 862-863 (lines=2) @@ | ||
859 | require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' ); |
|
860 | jetpack_register_social_logos(); |
|
861 | ||
862 | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) |
|
863 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
|
864 | } |
|
865 | ||
866 | /** |