Ticket #21694: 21694.diff
File 21694.diff, 1.5 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentytwelve/style.css
437 437 body { 438 438 font-size: 14px; 439 439 font-size: 1rem; 440 font-family: "Open Sans",Helvetica, Arial, sans-serif;440 font-family: Helvetica, Arial, sans-serif; 441 441 text-rendering: optimizeLegibility; 442 442 color: #444; 443 443 } 444 body.custom-font-enabled { 445 font-family: "Open Sans", Helvetica, Arial, sans-serif; 446 } 444 447 a { 445 448 outline: none; 446 449 color: #21759b; -
wp-content/themes/twentytwelve/functions.php
105 105 */ 106 106 $protocol = is_ssl() ? 'https' : 'http'; 107 107 wp_enqueue_style( 'twentytwelve-fonts', "$protocol://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700", array(), null ); 108 // To disable 109 // add_action( 'wp_enqueue_scripts', function() { wp_dequeue_style( 'twentytwelve-fonts' ); }, 11 ); 108 110 109 111 /* 110 112 * Loads our main stylesheet. … … 373 375 elseif ( in_array( $background_color, array( 'fff', 'ffffff' ) ) ) 374 376 $classes[] = 'custom-background-white'; 375 377 378 // Enable custom font class only if the font CSS is loaded. 379 if ( wp_script_is( 'twentytwelve-fonts', 'queue' ) ) 380 $classes[] = 'custom-font-enabled'; 381 376 382 return $classes; 377 383 } 378 384 add_filter( 'body_class', 'twentytwelve_body_class' );