[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentyfifteen/inc/ -> customizer.php (source)

   1  <?php
   2  /**
   3   * Twenty Fifteen Customizer functionality
   4   *
   5   * @package WordPress
   6   * @subpackage Twenty_Fifteen
   7   * @since Twenty Fifteen 1.0
   8   */
   9  
  10  /**
  11   * Add postMessage support for site title and description for the Customizer.
  12   *
  13   * @since Twenty Fifteen 1.0
  14   *
  15   * @param WP_Customize_Manager $wp_customize Customizer object.
  16   */
  17  function twentyfifteen_customize_register( $wp_customize ) {
  18      $color_scheme = twentyfifteen_get_color_scheme();
  19  
  20      $wp_customize->get_setting( 'blogname' )->transport        = 'postMessage';
  21      $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
  22  
  23      if ( isset( $wp_customize->selective_refresh ) ) {
  24          $wp_customize->selective_refresh->add_partial(
  25              'blogname',
  26              array(
  27                  'selector'            => '.site-title a',
  28                  'container_inclusive' => false,
  29                  'render_callback'     => 'twentyfifteen_customize_partial_blogname',
  30              )
  31          );
  32          $wp_customize->selective_refresh->add_partial(
  33              'blogdescription',
  34              array(
  35                  'selector'            => '.site-description',
  36                  'container_inclusive' => false,
  37                  'render_callback'     => 'twentyfifteen_customize_partial_blogdescription',
  38              )
  39          );
  40      }
  41  
  42      // Add color scheme setting and control.
  43      $wp_customize->add_setting(
  44          'color_scheme',
  45          array(
  46              'default'           => 'default',
  47              'sanitize_callback' => 'twentyfifteen_sanitize_color_scheme',
  48              'transport'         => 'postMessage',
  49          )
  50      );
  51  
  52      $wp_customize->add_control(
  53          'color_scheme',
  54          array(
  55              'label'    => __( 'Base Color Scheme', 'twentyfifteen' ),
  56              'section'  => 'colors',
  57              'type'     => 'select',
  58              'choices'  => twentyfifteen_get_color_scheme_choices(),
  59              'priority' => 1,
  60          )
  61      );
  62  
  63      // Add custom header and sidebar text color setting and control.
  64      $wp_customize->add_setting(
  65          'sidebar_textcolor',
  66          array(
  67              'default'           => $color_scheme[4],
  68              'sanitize_callback' => 'sanitize_hex_color',
  69              'transport'         => 'postMessage',
  70          )
  71      );
  72  
  73      $wp_customize->add_control(
  74          new WP_Customize_Color_Control(
  75              $wp_customize,
  76              'sidebar_textcolor',
  77              array(
  78                  'label'       => __( 'Header and Sidebar Text Color', 'twentyfifteen' ),
  79                  'description' => __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
  80                  'section'     => 'colors',
  81              )
  82          )
  83      );
  84  
  85      // Remove the core header textcolor control, as it shares the sidebar text color.
  86      $wp_customize->remove_control( 'header_textcolor' );
  87  
  88      // Add custom header and sidebar background color setting and control.
  89      $wp_customize->add_setting(
  90          'header_background_color',
  91          array(
  92              'default'           => $color_scheme[1],
  93              'sanitize_callback' => 'sanitize_hex_color',
  94              'transport'         => 'postMessage',
  95          )
  96      );
  97  
  98      $wp_customize->add_control(
  99          new WP_Customize_Color_Control(
 100              $wp_customize,
 101              'header_background_color',
 102              array(
 103                  'label'       => __( 'Header and Sidebar Background Color', 'twentyfifteen' ),
 104                  'description' => __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
 105                  'section'     => 'colors',
 106              )
 107          )
 108      );
 109  
 110      // Add an additional description to the header image section.
 111      $wp_customize->get_section( 'header_image' )->description = __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' );
 112  }
 113  add_action( 'customize_register', 'twentyfifteen_customize_register', 11 );
 114  
 115  /**
 116   * Render the site title for the selective refresh partial.
 117   *
 118   * @since Twenty Fifteen 1.5
 119   *
 120   * @see twentyfifteen_customize_register()
 121   *
 122   * @return void
 123   */
 124  function twentyfifteen_customize_partial_blogname() {
 125      bloginfo( 'name' );
 126  }
 127  
 128  /**
 129   * Render the site tagline for the selective refresh partial.
 130   *
 131   * @since Twenty Fifteen 1.5
 132   *
 133   * @see twentyfifteen_customize_register()
 134   *
 135   * @return void
 136   */
 137  function twentyfifteen_customize_partial_blogdescription() {
 138      bloginfo( 'description' );
 139  }
 140  
 141  /**
 142   * Register color schemes for Twenty Fifteen.
 143   *
 144   * Can be filtered with {@see 'twentyfifteen_color_schemes'}.
 145   *
 146   * The order of colors in a colors array:
 147   * 1. Main Background Color.
 148   * 2. Sidebar Background Color.
 149   * 3. Box Background Color.
 150   * 4. Main Text and Link Color.
 151   * 5. Sidebar Text and Link Color.
 152   * 6. Meta Box Background Color.
 153   *
 154   * @since Twenty Fifteen 1.0
 155   *
 156   * @return array An associative array of color scheme options.
 157   */
 158  function twentyfifteen_get_color_schemes() {
 159      /**
 160       * Filters the color schemes registered for use with Twenty Fifteen.
 161       *
 162       * The default schemes include 'default', 'dark', 'yellow', 'pink', 'purple', and 'blue'.
 163       *
 164       * @since Twenty Fifteen 1.0
 165       *
 166       * @param array $schemes {
 167       *     Associative array of color schemes data.
 168       *
 169       *     @type array $slug {
 170       *         Associative array of information for setting up the color scheme.
 171       *
 172       *         @type string $label  Color scheme label.
 173       *         @type array  $colors HEX codes for default colors prepended with a hash symbol ('#').
 174       *                              Colors are defined in the following order: Main background, sidebar
 175       *                              background, box background, main text and link, sidebar text and link,
 176       *                              meta box background.
 177       *     }
 178       * }
 179       */
 180      return apply_filters(
 181          'twentyfifteen_color_schemes',
 182          array(
 183              'default' => array(
 184                  'label'  => __( 'Default', 'twentyfifteen' ),
 185                  'colors' => array(
 186                      '#f1f1f1',
 187                      '#ffffff',
 188                      '#ffffff',
 189                      '#333333',
 190                      '#333333',
 191                      '#f7f7f7',
 192                  ),
 193              ),
 194              'dark'    => array(
 195                  'label'  => __( 'Dark', 'twentyfifteen' ),
 196                  'colors' => array(
 197                      '#111111',
 198                      '#202020',
 199                      '#202020',
 200                      '#bebebe',
 201                      '#bebebe',
 202                      '#1b1b1b',
 203                  ),
 204              ),
 205              'yellow'  => array(
 206                  'label'  => __( 'Yellow', 'twentyfifteen' ),
 207                  'colors' => array(
 208                      '#f4ca16',
 209                      '#ffdf00',
 210                      '#ffffff',
 211                      '#111111',
 212                      '#111111',
 213                      '#f1f1f1',
 214                  ),
 215              ),
 216              'pink'    => array(
 217                  'label'  => __( 'Pink', 'twentyfifteen' ),
 218                  'colors' => array(
 219                      '#ffe5d1',
 220                      '#e53b51',
 221                      '#ffffff',
 222                      '#352712',
 223                      '#ffffff',
 224                      '#f1f1f1',
 225                  ),
 226              ),
 227              'purple'  => array(
 228                  'label'  => __( 'Purple', 'twentyfifteen' ),
 229                  'colors' => array(
 230                      '#674970',
 231                      '#2e2256',
 232                      '#ffffff',
 233                      '#2e2256',
 234                      '#ffffff',
 235                      '#f1f1f1',
 236                  ),
 237              ),
 238              'blue'    => array(
 239                  'label'  => __( 'Blue', 'twentyfifteen' ),
 240                  'colors' => array(
 241                      '#e9f2f9',
 242                      '#55c3dc',
 243                      '#ffffff',
 244                      '#22313f',
 245                      '#ffffff',
 246                      '#f1f1f1',
 247                  ),
 248              ),
 249          )
 250      );
 251  }
 252  
 253  if ( ! function_exists( 'twentyfifteen_get_color_scheme' ) ) :
 254      /**
 255       * Get the current Twenty Fifteen color scheme.
 256       *
 257       * @since Twenty Fifteen 1.0
 258       *
 259       * @return array An associative array of either the current or default color scheme hex values.
 260       */
 261  	function twentyfifteen_get_color_scheme() {
 262          $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
 263          $color_schemes       = twentyfifteen_get_color_schemes();
 264  
 265          if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
 266              return $color_schemes[ $color_scheme_option ]['colors'];
 267          }
 268  
 269          return $color_schemes['default']['colors'];
 270      }
 271  endif; // twentyfifteen_get_color_scheme()
 272  
 273  if ( ! function_exists( 'twentyfifteen_get_color_scheme_choices' ) ) :
 274      /**
 275       * Returns an array of color scheme choices registered for Twenty Fifteen.
 276       *
 277       * @since Twenty Fifteen 1.0
 278       *
 279       * @return array Array of color schemes.
 280       */
 281  	function twentyfifteen_get_color_scheme_choices() {
 282          $color_schemes                = twentyfifteen_get_color_schemes();
 283          $color_scheme_control_options = array();
 284  
 285          foreach ( $color_schemes as $color_scheme => $value ) {
 286              $color_scheme_control_options[ $color_scheme ] = $value['label'];
 287          }
 288  
 289          return $color_scheme_control_options;
 290      }
 291  endif; // twentyfifteen_get_color_scheme_choices()
 292  
 293  if ( ! function_exists( 'twentyfifteen_sanitize_color_scheme' ) ) :
 294      /**
 295       * Sanitization callback for color schemes.
 296       *
 297       * @since Twenty Fifteen 1.0
 298       *
 299       * @param string $value Color scheme name value.
 300       * @return string Color scheme name.
 301       */
 302  	function twentyfifteen_sanitize_color_scheme( $value ) {
 303          $color_schemes = twentyfifteen_get_color_scheme_choices();
 304  
 305          if ( ! array_key_exists( $value, $color_schemes ) ) {
 306              $value = 'default';
 307          }
 308  
 309          return $value;
 310      }
 311  endif; // twentyfifteen_sanitize_color_scheme()
 312  
 313  /**
 314   * Enqueues front-end CSS for color scheme.
 315   *
 316   * @since Twenty Fifteen 1.0
 317   *
 318   * @see wp_add_inline_style()
 319   */
 320  function twentyfifteen_color_scheme_css() {
 321      $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
 322  
 323      // Don't do anything if the default color scheme is selected.
 324      if ( 'default' === $color_scheme_option ) {
 325          return;
 326      }
 327  
 328      $color_scheme = twentyfifteen_get_color_scheme();
 329  
 330      // Convert main and sidebar text hex color to rgba.
 331      $color_textcolor_rgb         = twentyfifteen_hex2rgb( $color_scheme[3] );
 332      $color_sidebar_textcolor_rgb = twentyfifteen_hex2rgb( $color_scheme[4] );
 333      $colors                      = array(
 334          'background_color'            => $color_scheme[0],
 335          'header_background_color'     => $color_scheme[1],
 336          'box_background_color'        => $color_scheme[2],
 337          'textcolor'                   => $color_scheme[3],
 338          'secondary_textcolor'         => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $color_textcolor_rgb ),
 339          'border_color'                => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $color_textcolor_rgb ),
 340          'border_focus_color'          => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $color_textcolor_rgb ),
 341          'sidebar_textcolor'           => $color_scheme[4],
 342          'sidebar_border_color'        => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $color_sidebar_textcolor_rgb ),
 343          'sidebar_border_focus_color'  => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $color_sidebar_textcolor_rgb ),
 344          'secondary_sidebar_textcolor' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $color_sidebar_textcolor_rgb ),
 345          'meta_box_background_color'   => $color_scheme[5],
 346      );
 347  
 348      $color_scheme_css = twentyfifteen_get_color_scheme_css( $colors );
 349  
 350      wp_add_inline_style( 'twentyfifteen-style', $color_scheme_css );
 351  }
 352  add_action( 'wp_enqueue_scripts', 'twentyfifteen_color_scheme_css' );
 353  
 354  /**
 355   * Binds JS listener to make Customizer color_scheme control.
 356   *
 357   * Passes color scheme data as colorScheme global.
 358   *
 359   * @since Twenty Fifteen 1.0
 360   */
 361  function twentyfifteen_customize_control_js() {
 362      wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20141216', array( 'in_footer' => true ) );
 363      wp_localize_script( 'color-scheme-control', 'colorScheme', twentyfifteen_get_color_schemes() );
 364  }
 365  add_action( 'customize_controls_enqueue_scripts', 'twentyfifteen_customize_control_js' );
 366  
 367  /**
 368   * Binds JS handlers to make the Customizer preview reload changes asynchronously.
 369   *
 370   * @since Twenty Fifteen 1.0
 371   */
 372  function twentyfifteen_customize_preview_js() {
 373      wp_enqueue_script( 'twentyfifteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20141216', array( 'in_footer' => true ) );
 374  }
 375  add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' );
 376  
 377  /**
 378   * Returns CSS for the color schemes.
 379   *
 380   * @since Twenty Fifteen 1.0
 381   *
 382   * @param array $colors Color scheme colors.
 383   * @return string Color scheme CSS.
 384   */
 385  function twentyfifteen_get_color_scheme_css( $colors ) {
 386      $colors = wp_parse_args(
 387          $colors,
 388          array(
 389              'background_color'            => '',
 390              'header_background_color'     => '',
 391              'box_background_color'        => '',
 392              'textcolor'                   => '',
 393              'secondary_textcolor'         => '',
 394              'border_color'                => '',
 395              'border_focus_color'          => '',
 396              'sidebar_textcolor'           => '',
 397              'sidebar_border_color'        => '',
 398              'sidebar_border_focus_color'  => '',
 399              'secondary_sidebar_textcolor' => '',
 400              'meta_box_background_color'   => '',
 401          )
 402      );
 403  
 404      $css = <<<CSS
 405      /* Color Scheme */
 406  
 407      /* Background Color */
 408      body {
 409          background-color: {$colors['background_color']};
 410      }
 411  
 412      /* Sidebar Background Color */
 413      body:before,
 414      .site-header {
 415          background-color: {$colors['header_background_color']};
 416      }
 417  
 418      /* Box Background Color */
 419      .post-navigation,
 420      .pagination,
 421      .secondary,
 422      .site-footer,
 423      .hentry,
 424      .page-header,
 425      .page-content,
 426      .comments-area,
 427      .widecolumn {
 428          background-color: {$colors['box_background_color']};
 429      }
 430  
 431      /* Box Background Color */
 432      button,
 433      input[type="button"],
 434      input[type="reset"],
 435      input[type="submit"],
 436      .pagination .prev,
 437      .pagination .next,
 438      .widget_calendar tbody a,
 439      .widget_calendar tbody a:hover,
 440      .widget_calendar tbody a:focus,
 441      .page-links a,
 442      .page-links a:hover,
 443      .page-links a:focus,
 444      .sticky-post {
 445          color: {$colors['box_background_color']};
 446      }
 447  
 448      /* Main Text Color */
 449      button,
 450      input[type="button"],
 451      input[type="reset"],
 452      input[type="submit"],
 453      .pagination .prev,
 454      .pagination .next,
 455      .widget_calendar tbody a,
 456      .page-links a,
 457      .sticky-post {
 458          background-color: {$colors['textcolor']};
 459      }
 460  
 461      /* Main Text Color */
 462      body,
 463      blockquote cite,
 464      blockquote small,
 465      a,
 466      .dropdown-toggle:after,
 467      .image-navigation a:hover,
 468      .image-navigation a:focus,
 469      .comment-navigation a:hover,
 470      .comment-navigation a:focus,
 471      .widget-title,
 472      .entry-footer a:hover,
 473      .entry-footer a:focus,
 474      .comment-metadata a:hover,
 475      .comment-metadata a:focus,
 476      .pingback .edit-link a:hover,
 477      .pingback .edit-link a:focus,
 478      .comment-list .reply a:hover,
 479      .comment-list .reply a:focus,
 480      .site-info a:hover,
 481      .site-info a:focus {
 482          color: {$colors['textcolor']};
 483      }
 484  
 485      /* Main Text Color */
 486      .entry-content a,
 487      .entry-summary a,
 488      .page-content a,
 489      .comment-content a,
 490      .pingback .comment-body > a,
 491      .author-description a,
 492      .taxonomy-description a,
 493      .textwidget a,
 494      .entry-footer a:hover,
 495      .comment-metadata a:hover,
 496      .pingback .edit-link a:hover,
 497      .comment-list .reply a:hover,
 498      .site-info a:hover {
 499          border-color: {$colors['textcolor']};
 500      }
 501  
 502      /* Secondary Text Color */
 503      button:hover,
 504      button:focus,
 505      input[type="button"]:hover,
 506      input[type="button"]:focus,
 507      input[type="reset"]:hover,
 508      input[type="reset"]:focus,
 509      input[type="submit"]:hover,
 510      input[type="submit"]:focus,
 511      .pagination .prev:hover,
 512      .pagination .prev:focus,
 513      .pagination .next:hover,
 514      .pagination .next:focus,
 515      .widget_calendar tbody a:hover,
 516      .widget_calendar tbody a:focus,
 517      .page-links a:hover,
 518      .page-links a:focus {
 519          background-color: {$colors['secondary_textcolor']};
 520      }
 521  
 522      /* Secondary Text Color */
 523      blockquote,
 524      a:hover,
 525      a:focus,
 526      .main-navigation .menu-item-description,
 527      .post-navigation .meta-nav,
 528      .post-navigation a:hover .post-title,
 529      .post-navigation a:focus .post-title,
 530      .image-navigation,
 531      .image-navigation a,
 532      .comment-navigation,
 533      .comment-navigation a,
 534      .widget,
 535      .author-heading,
 536      .entry-footer,
 537      .entry-footer a,
 538      .taxonomy-description,
 539      .page-links > .page-links-title,
 540      .entry-caption,
 541      .comment-author,
 542      .comment-metadata,
 543      .comment-metadata a,
 544      .pingback .edit-link,
 545      .pingback .edit-link a,
 546      .post-password-form label,
 547      .comment-form label,
 548      .comment-notes,
 549      .comment-awaiting-moderation,
 550      .logged-in-as,
 551      .form-allowed-tags,
 552      .no-comments,
 553      .site-info,
 554      .site-info a,
 555      .wp-caption-text,
 556      .gallery-caption,
 557      .comment-list .reply a,
 558      .widecolumn label,
 559      .widecolumn .mu_register label {
 560          color: {$colors['secondary_textcolor']};
 561      }
 562  
 563      /* Secondary Text Color */
 564      blockquote,
 565      .logged-in-as a:hover,
 566      .comment-author a:hover {
 567          border-color: {$colors['secondary_textcolor']};
 568      }
 569  
 570      /* Border Color */
 571      hr,
 572      .dropdown-toggle:hover,
 573      .dropdown-toggle:focus {
 574          background-color: {$colors['border_color']};
 575      }
 576  
 577      /* Border Color */
 578      pre,
 579      abbr[title],
 580      table,
 581      th,
 582      td,
 583      input,
 584      textarea,
 585      .main-navigation ul,
 586      .main-navigation li,
 587      .post-navigation,
 588      .post-navigation div + div,
 589      .pagination,
 590      .comment-navigation,
 591      .widget li,
 592      .widget_categories .children,
 593      .widget_nav_menu .sub-menu,
 594      .widget_pages .children,
 595      .site-header,
 596      .site-footer,
 597      .hentry + .hentry,
 598      .author-info,
 599      .entry-content .page-links a,
 600      .page-links > span,
 601      .page-header,
 602      .comments-area,
 603      .comment-list + .comment-respond,
 604      .comment-list article,
 605      .comment-list .pingback,
 606      .comment-list .trackback,
 607      .comment-list .reply a,
 608      .no-comments {
 609          border-color: {$colors['border_color']};
 610      }
 611  
 612      /* Border Focus Color */
 613      a:focus,
 614      button:focus,
 615      input:focus {
 616          outline-color: {$colors['border_focus_color']};
 617      }
 618  
 619      input:focus,
 620      textarea:focus {
 621          border-color: {$colors['border_focus_color']};
 622      }
 623  
 624      /* Sidebar Link Color */
 625      .secondary-toggle:before {
 626          color: {$colors['sidebar_textcolor']};
 627      }
 628  
 629      .site-title a,
 630      .site-description {
 631          color: {$colors['sidebar_textcolor']};
 632      }
 633  
 634      /* Sidebar Text Color */
 635      .site-title a:hover,
 636      .site-title a:focus {
 637          color: {$colors['secondary_sidebar_textcolor']};
 638      }
 639  
 640      /* Sidebar Border Color */
 641      .secondary-toggle {
 642          border-color: {$colors['sidebar_border_color']};
 643      }
 644  
 645      /* Sidebar Border Focus Color */
 646      .secondary-toggle:hover,
 647      .secondary-toggle:focus {
 648          border-color: {$colors['sidebar_border_focus_color']};
 649      }
 650  
 651      .site-title a {
 652          outline-color: {$colors['sidebar_border_focus_color']};
 653      }
 654  
 655      /* Meta Background Color */
 656      .entry-footer {
 657          background-color: {$colors['meta_box_background_color']};
 658      }
 659  
 660      @media screen and (min-width: 38.75em) {
 661          /* Main Text Color */
 662          .page-header {
 663              border-color: {$colors['textcolor']};
 664          }
 665      }
 666  
 667      @media screen and (min-width: 59.6875em) {
 668          /* Make sure its transparent on desktop */
 669          .site-header,
 670          .secondary {
 671              background-color: transparent;
 672          }
 673  
 674          /* Sidebar Background Color */
 675          .widget button,
 676          .widget input[type="button"],
 677          .widget input[type="reset"],
 678          .widget input[type="submit"],
 679          .widget_calendar tbody a,
 680          .widget_calendar tbody a:hover,
 681          .widget_calendar tbody a:focus {
 682              color: {$colors['header_background_color']};
 683          }
 684  
 685          /* Sidebar Link Color */
 686          .secondary a,
 687          .dropdown-toggle:after,
 688          .widget-title,
 689          .widget blockquote cite,
 690          .widget blockquote small {
 691              color: {$colors['sidebar_textcolor']};
 692          }
 693  
 694          .widget button,
 695          .widget input[type="button"],
 696          .widget input[type="reset"],
 697          .widget input[type="submit"],
 698          .widget_calendar tbody a {
 699              background-color: {$colors['sidebar_textcolor']};
 700          }
 701  
 702          .textwidget a {
 703              border-color: {$colors['sidebar_textcolor']};
 704          }
 705  
 706          /* Sidebar Text Color */
 707          .secondary a:hover,
 708          .secondary a:focus,
 709          .main-navigation .menu-item-description,
 710          .widget,
 711          .widget blockquote,
 712          .widget .wp-caption-text,
 713          .widget .gallery-caption {
 714              color: {$colors['secondary_sidebar_textcolor']};
 715          }
 716  
 717          .widget button:hover,
 718          .widget button:focus,
 719          .widget input[type="button"]:hover,
 720          .widget input[type="button"]:focus,
 721          .widget input[type="reset"]:hover,
 722          .widget input[type="reset"]:focus,
 723          .widget input[type="submit"]:hover,
 724          .widget input[type="submit"]:focus,
 725          .widget_calendar tbody a:hover,
 726          .widget_calendar tbody a:focus {
 727              background-color: {$colors['secondary_sidebar_textcolor']};
 728          }
 729  
 730          .widget blockquote {
 731              border-color: {$colors['secondary_sidebar_textcolor']};
 732          }
 733  
 734          /* Sidebar Border Color */
 735          .main-navigation ul,
 736          .main-navigation li,
 737          .widget input,
 738          .widget textarea,
 739          .widget table,
 740          .widget th,
 741          .widget td,
 742          .widget pre,
 743          .widget li,
 744          .widget_categories .children,
 745          .widget_nav_menu .sub-menu,
 746          .widget_pages .children,
 747          .widget abbr[title] {
 748              border-color: {$colors['sidebar_border_color']};
 749          }
 750  
 751          .dropdown-toggle:hover,
 752          .dropdown-toggle:focus,
 753          .widget hr {
 754              background-color: {$colors['sidebar_border_color']};
 755          }
 756  
 757          .widget input:focus,
 758          .widget textarea:focus {
 759              border-color: {$colors['sidebar_border_focus_color']};
 760          }
 761  
 762          .sidebar a:focus,
 763          .dropdown-toggle:focus {
 764              outline-color: {$colors['sidebar_border_focus_color']};
 765          }
 766      }
 767  CSS;
 768  
 769      return $css;
 770  }
 771  
 772  /**
 773   * Output an Underscore template for generating CSS for the color scheme.
 774   *
 775   * The template generates the css dynamically for instant display in the Customizer
 776   * preview.
 777   *
 778   * @since Twenty Fifteen 1.0
 779   */
 780  function twentyfifteen_color_scheme_css_template() {
 781      $colors = array(
 782          'background_color'            => '{{ data.background_color }}',
 783          'header_background_color'     => '{{ data.header_background_color }}',
 784          'box_background_color'        => '{{ data.box_background_color }}',
 785          'textcolor'                   => '{{ data.textcolor }}',
 786          'secondary_textcolor'         => '{{ data.secondary_textcolor }}',
 787          'border_color'                => '{{ data.border_color }}',
 788          'border_focus_color'          => '{{ data.border_focus_color }}',
 789          'sidebar_textcolor'           => '{{ data.sidebar_textcolor }}',
 790          'sidebar_border_color'        => '{{ data.sidebar_border_color }}',
 791          'sidebar_border_focus_color'  => '{{ data.sidebar_border_focus_color }}',
 792          'secondary_sidebar_textcolor' => '{{ data.secondary_sidebar_textcolor }}',
 793          'meta_box_background_color'   => '{{ data.meta_box_background_color }}',
 794      );
 795      ?>
 796      <script type="text/html" id="tmpl-twentyfifteen-color-scheme">
 797          <?php echo twentyfifteen_get_color_scheme_css( $colors ); ?>
 798      </script>
 799      <?php
 800  }
 801  add_action( 'customize_controls_print_footer_scripts', 'twentyfifteen_color_scheme_css_template' );


Generated : Thu Apr 25 08:20:02 2024 Cross-referenced by PHPXref