@@ 309-311 (lines=3) @@ | ||
306 | require_once JETPACK__PLUGIN_DIR . '_inc/genericons.php'; |
|
307 | jetpack_register_genericons(); |
|
308 | ||
309 | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) { |
|
310 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
|
311 | } |
|
312 | ||
313 | add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) ); |
|
314 | } |
@@ 1305-1307 (lines=3) @@ | ||
1302 | require_once JETPACK__PLUGIN_DIR . '_inc/social-logos.php'; |
|
1303 | jetpack_register_social_logos(); |
|
1304 | ||
1305 | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) { |
|
1306 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
|
1307 | } |
|
1308 | } |
|
1309 | ||
1310 | /** |
|
@@ 4120-4127 (lines=8) @@ | ||
4117 | function admin_banner_styles() { |
|
4118 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
4119 | ||
4120 | if ( ! wp_style_is( 'jetpack-dops-style' ) ) { |
|
4121 | wp_register_style( |
|
4122 | 'jetpack-dops-style', |
|
4123 | plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ), |
|
4124 | array(), |
|
4125 | JETPACK__VERSION |
|
4126 | ); |
|
4127 | } |
|
4128 | ||
4129 | wp_enqueue_style( |
|
4130 | 'jetpack', |