Housekeeping (#2520)

* enhance(project): Add .prettierrc to project
* chore(deps): Bump dependencies
* chore(view): Improve readability of the search form view
* chore(admin): Improve language used in the customize_register filter docblock
* chore(lint): Lint project assets
* chore(change-log): Improve/prepare the changelog for actual release
* chore(readme): Improve README feature list
* chore(readme): Update README theme directory structure
* chore(readme): Add GitHub sponsors badge
* chore(readme): Clean up various wording
* fix(ci): Fix failing tests
* fix(mix): Add index.php to purgecss scope (Supersedes #2423) (Credit @oxyc)
This commit is contained in:
Brandon
2020-08-20 13:35:15 -05:00
committed by GitHub
parent 5535ea6184
commit 24ac51d510
14 changed files with 2890 additions and 2559 deletions

View File

@@ -1,9 +1,6 @@
import '@wordpress/edit-post';
import domReady from '@wordpress/dom-ready';
import {
unregisterBlockStyle,
registerBlockStyle,
} from '@wordpress/blocks';
import { unregisterBlockStyle, registerBlockStyle } from '@wordpress/blocks';
domReady(() => {
unregisterBlockStyle('core/button', 'outline');

View File

@@ -1,7 +1,16 @@
<form role="search" method="get" class="search-form" action="{{ home_url('/') }}">
<label>
<span class="screen-reader-text">{{ _x('Search for:', 'label', 'sage') }}</span>
<input type="search" class="search-field" placeholder="{!! esc_attr_x('Search &hellip;', 'placeholder', 'sage') !!}" value="{{ get_search_query() }}" name="s">
<span class="screen-reader-text">
{{ _x('Search for:', 'label', 'sage') }}
</span>
<input
type="search"
class="search-field"
placeholder="{!! esc_attr_x('Search &hellip;', 'placeholder', 'sage') !!}"
value="{{ get_search_query() }}"
name="s"
>
</label>
<input type="submit" class="button" value="{{ esc_attr_x('Search', 'submit button', 'sage') }}">