Skip to content

Commit 4a3e996

Browse files
noisysocksgithub-actions[bot]
authored andcommitted
Release build 11.25.0 [ci release]
1 parent 178f448 commit 4a3e996

File tree

9 files changed

+9
-5
lines changed

9 files changed

+9
-5
lines changed

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- Support version from platform object (#1961)
1+
- Set input's font size to 14px and textarea's line height to 16px on (#1963)

build/apple/pages/new-tab/dist/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1510,6 +1510,7 @@ body:not([data-platform-name]) .Button_button:active {
15101510
border: none;
15111511
box-sizing: content-box;
15121512
color: var(--ntp-text-primary);
1513+
line-height: 16px;
15131514
max-height: 10lh;
15141515
padding: var(--sp-3) var(--sp-3) 0;
15151516
resize: none;

build/apple/pages/new-tab/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8446,7 +8446,7 @@
84468446
const inputRef = useCompletionInput(inputBase, inputCompletion);
84478447
const inputSuffix = getInputSuffix(term, selectedSuggestion);
84488448
const inputSuffixText = useSuffixText(inputSuffix);
8449-
const inputFont = platformName === "windows" ? "400 13px / 16px system-ui" : "500 13px / 16px system-ui";
8449+
const inputFont = platformName === "windows" ? "400 14px / 16px system-ui" : "500 13px / 16px system-ui";
84508450
const inputSuffixWidth = T2(() => measureText(inputSuffixText, inputFont), [inputSuffixText, inputFont]);
84518451
y2(() => {
84528452
if (autoFocus && inputRef.current) {

build/integration/pages/new-tab/dist/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1510,6 +1510,7 @@ body:not([data-platform-name]) .Button_button:active {
15101510
border: none;
15111511
box-sizing: content-box;
15121512
color: var(--ntp-text-primary);
1513+
line-height: 16px;
15131514
max-height: 10lh;
15141515
padding: var(--sp-3) var(--sp-3) 0;
15151516
resize: none;

build/integration/pages/new-tab/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8451,7 +8451,7 @@
84518451
const inputRef = useCompletionInput(inputBase, inputCompletion);
84528452
const inputSuffix = getInputSuffix(term, selectedSuggestion);
84538453
const inputSuffixText = useSuffixText(inputSuffix);
8454-
const inputFont = platformName === "windows" ? "400 13px / 16px system-ui" : "500 13px / 16px system-ui";
8454+
const inputFont = platformName === "windows" ? "400 14px / 16px system-ui" : "500 13px / 16px system-ui";
84558455
const inputSuffixWidth = T2(() => measureText(inputSuffixText, inputFont), [inputSuffixText, inputFont]);
84568456
y2(() => {
84578457
if (autoFocus && inputRef.current) {

build/windows/pages/new-tab/dist/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1510,6 +1510,7 @@ body:not([data-platform-name]) .Button_button:active {
15101510
border: none;
15111511
box-sizing: content-box;
15121512
color: var(--ntp-text-primary);
1513+
line-height: 16px;
15131514
max-height: 10lh;
15141515
padding: var(--sp-3) var(--sp-3) 0;
15151516
resize: none;

build/windows/pages/new-tab/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8446,7 +8446,7 @@
84468446
const inputRef = useCompletionInput(inputBase, inputCompletion);
84478447
const inputSuffix = getInputSuffix(term, selectedSuggestion);
84488448
const inputSuffixText = useSuffixText(inputSuffix);
8449-
const inputFont = platformName === "windows" ? "400 13px / 16px system-ui" : "500 13px / 16px system-ui";
8449+
const inputFont = platformName === "windows" ? "400 14px / 16px system-ui" : "500 13px / 16px system-ui";
84508450
const inputSuffixWidth = T2(() => measureText(inputSuffixText, inputFont), [inputSuffixText, inputFont]);
84518451
y2(() => {
84528452
if (autoFocus && inputRef.current) {

special-pages/pages/new-tab/app/omnibar/components/AiChatForm.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
border: none;
1212
box-sizing: content-box;
1313
color: var(--ntp-text-primary);
14+
line-height: 16px;
1415
max-height: 10lh;
1516
padding: var(--sp-3) var(--sp-3) 0;
1617
resize: none;

special-pages/pages/new-tab/app/omnibar/components/SearchForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function SearchForm({ autoFocus, onOpenSuggestion, onSubmit, onSubmitChat
6161
const inputRef = useCompletionInput(inputBase, inputCompletion);
6262
const inputSuffix = getInputSuffix(term, selectedSuggestion);
6363
const inputSuffixText = useSuffixText(inputSuffix);
64-
const inputFont = platformName === 'windows' ? '400 13px / 16px system-ui' : '500 13px / 16px system-ui';
64+
const inputFont = platformName === 'windows' ? '400 14px / 16px system-ui' : '500 13px / 16px system-ui';
6565
const inputSuffixWidth = useMemo(() => measureText(inputSuffixText, inputFont), [inputSuffixText, inputFont]);
6666

6767
useEffect(() => {

0 commit comments

Comments
 (0)