Merge "Scale server-rendered search box with browser font size"

This commit is contained in:
jenkins-bot 2023-01-13 23:04:25 +00:00 committed by Gerrit Code Review
commit eb78a83856
2 changed files with 8 additions and 3 deletions

View file

@ -5,7 +5,7 @@
},
{
"resourceModule": "skins.vector.styles",
"maxSize": "11.9kB"
"maxSize": "12 kB"
},
{
"resourceModule": "skins.vector.legacy.js",

View file

@ -12,7 +12,7 @@
@size-base: 32px;
@min-size-search-button: 30px;
@background-size-x-search-button: unit( 20px / @font-size-browser / @font-size-base, em );
@background-size-x-search-button: 20px;
// Search container
// We have to put those styles outside `.skin-vector-search-vue`,
@ -39,7 +39,12 @@
}
.vector-search-box-vue .vector-search-box-input {
height: @size-base;
height: auto;
// The following is copied directly from Codex.
min-height: @size-base;
line-height: 1.4285714;
padding-top: 4px;
padding-bottom: 4px;
}
.vector-search-box-vue .searchButton {