@@ 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 | } |
@@ 1321-1323 (lines=3) @@ | ||
1318 | require_once JETPACK__PLUGIN_DIR . '_inc/social-logos.php'; |
|
1319 | jetpack_register_social_logos(); |
|
1320 | ||
1321 | if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) { |
|
1322 | wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION ); |
|
1323 | } |
|
1324 | } |
|
1325 | ||
1326 | /** |
|
@@ 4099-4106 (lines=8) @@ | ||
4096 | function admin_banner_styles() { |
|
4097 | $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
4098 | ||
4099 | if ( ! wp_style_is( 'jetpack-dops-style' ) ) { |
|
4100 | wp_register_style( |
|
4101 | 'jetpack-dops-style', |
|
4102 | plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ), |
|
4103 | array(), |
|
4104 | JETPACK__VERSION |
|
4105 | ); |
|
4106 | } |
|
4107 | ||
4108 | wp_enqueue_style( |
|
4109 | 'jetpack', |