Skip to content

Commit

Permalink
Bundled Themes: Twenty Nineteen decrease the font size for widget tit…
Browse files Browse the repository at this point in the history
…les.

Update styles to decrease the font size for widget titles.

Props kjellr, mukesh27.
Fixes #45865.
Built from https://develop.svn.wordpress.org/trunk@47586


git-svn-id: http://core.svn.wordpress.org/trunk@47361 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ianbelanger79 committed Apr 16, 2020
1 parent 92538d8 commit 90f5e05
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
.widget {
margin: 0 0 #{$size__spacing-unit};

.widget-title {
font-size: $font__size-lg;
}

/* Make sure select elements fit in widgets. */
select {
max-width: 100%;
Expand Down
4 changes: 4 additions & 0 deletions wp-content/themes/twentynineteen/style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5071,6 +5071,10 @@ body.page .main-navigation {
/* Make sure select elements fit in widgets. */
}

.widget .widget-title {
font-size: 1.6875em;
}

.widget select {
max-width: 100%;
}
Expand Down
4 changes: 4 additions & 0 deletions wp-content/themes/twentynineteen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5077,6 +5077,10 @@ body.page .main-navigation {
/* Make sure select elements fit in widgets. */
}

.widget .widget-title {
font-size: 1.6875em;
}

.widget select {
max-width: 100%;
}
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-47585';
$wp_version = '5.5-alpha-47586';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit 90f5e05

Please sign in to comment.