Make WordPress Core

Ticket #40184: 40184.2.diff

File 40184.2.diff, 2.2 KB (added by sami.keijonen, 7 years ago)
  • src/wp-content/themes/twentyseventeen/functions.php

     
    542542add_filter( 'frontpage_template',  'twentyseventeen_front_page_template' );
    543543
    544544/**
     545 * Modifies tag cloud widget arguments to have all tags in the widget same font size and use list format for better accessibility.
     546 *
     547 * @since Twenty Seventeen 1.4
     548 *
     549 * @param  array $args Arguments for tag cloud widget.
     550 * @return array A new modified arguments.
     551 */
     552function twentyseventeen_widget_tag_cloud_args( $args ) {
     553        $args['largest']  = 1;
     554        $args['smallest'] = 1;
     555        $args['unit']     = 'em';
     556        $args['format']   = 'list';
     557        return $args;
     558}
     559add_filter( 'widget_tag_cloud_args', 'twentyseventeen_widget_tag_cloud_args' );
     560
     561/**
    545562 * Implement the Custom Header feature.
    546563 */
    547564require get_parent_theme_file_path( '/inc/custom-header.php' );
  • src/wp-content/themes/twentyseventeen/style.css

     
    25402540        padding: 0.5em 0;
    25412541}
    25422542
    2543 .widget ul li + li {
     2543.widget:not(.widget_tag_cloud) ul li + li {
    25442544        margin-top: -1px;
    25452545}
    25462546
     
    27332733
    27342734/* Tag cloud widget */
    27352735
     2736.tagcloud ul li {
     2737        float: left;
     2738        border-top: 0;
     2739        border-bottom: 0;
     2740        padding: 0;
     2741        margin: 4px 4px 0 0;
     2742}
     2743
    27362744.tagcloud,
    27372745.widget_tag_cloud,
    27382746.wp_widget_tag_cloud {
     
    27452753        border: 1px solid #ddd;
    27462754        -webkit-box-shadow: none;
    27472755        box-shadow: none;
    2748         display: inline-block;
    2749         float: left;
    2750         font-size: 14px !important; /* !important to overwrite inline styles */
    2751         font-size: 0.875rem !important;
    2752         margin: 4px 4px 0 0 !important;
    2753         padding: 4px 10px 5px !important;
     2756        display: block;
     2757        padding: 4px 10px 5px;
    27542758        position: relative;
    27552759        -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    27562760        transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;