twentytwentythree icon indicating copy to clipboard operation
twentytwentythree copied to clipboard

The search block in the navigation block is very large

Open carolinan opened this issue 3 years ago • 5 comments

The search form is using the default medium font size, compared to the navigation link which uses the small font size.

In the image: First, from the left side, there are two regular navigation links that are using size small. Next is a sub menu, which uses the default medium size. And then a page link and the search form.

navigation menu, see image description above

carolinan avatar Aug 17 '22 13:08 carolinan

I think it is this font size that is enlarging it:

.wp-element-button, .wp-block-button__link {
    background-color: var(--wp--preset--color--primary);
    border-radius: 0;
    border-width: 0;
    color: var(--wp--preset--color--contrast);
    font-family: inherit;
    font-size: var(--wp--preset--font-size--medium);
    line-height: inherit;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    text-decoration: none;
}

carolinan avatar Aug 17 '22 14:08 carolinan

yeah, probably the best solution is to remove the font size from the button element and apply it directly to the button block then

MaggieCabrera avatar Aug 17 '22 14:08 MaggieCabrera

When I remove the font size from button elements, only the size of the file block button changes, because the other buttons inherits the medium size from the body.

localhost_10003_buttons_ (1)

carolinan avatar Aug 18 '22 07:08 carolinan

When I remove the font size from button elements, only the size of the file block button changes, because the other buttons inherits the medium size from the body.

Yeah, I think by default the search block inherits the font size from the container, maybe we need a group wrapper with a font size rule?

MaggieCabrera avatar Aug 18 '22 07:08 MaggieCabrera

So remove the button element font size, and then set the small font size on the navigation block, not the navigation link

carolinan avatar Aug 19 '22 01:08 carolinan