From c353d8b5a9748b982a6e47b96dee5b6a0d26cc49 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Sat, 24 Aug 2024 12:19:13 +0000 Subject: [PATCH] Twenty Seventeen: Fixes search block button styling variations. The search block button was not the same back and front for background, text and font weight. This is an additional patch solving the previous issue of styles being in wrong section and also differences.. Props sabernhardt. Fixes #61888. git-svn-id: https://develop.svn.wordpress.org/trunk@58930 602fd350-edb4-49c9-b593-d223f7449a82 --- .../assets/css/editor-blocks.css | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index 621a1fb975bdb..00c36a32937d5 100644 --- a/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css @@ -560,16 +560,6 @@ html[lang="th"] .edit-post-visual-editor * { text-align: left; } -/* Search */ - -.wp-block-search__button { - background-color: #222; - color: #fff; - font-size: 16px; - font-weight: 800; - line-height: 1.5; -} - @media screen and (min-width: 30em) { .wp-block-quote.alignleft p, .wp-block-quote.alignright p, @@ -832,3 +822,12 @@ table.wp-block-table td:last-child { margin-left: 0; margin-right: 0; } + +/* Search */ + +.wp-block-search__button { + background-color: #222; + color: #fff; + font-weight: 800; + line-height: 1.5; +}