1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Expand install input placeholder a bit

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-05-21 10:30:25 +03:00
parent 096a9cc44a
commit f8a2e97eb9
2 changed files with 3 additions and 3 deletions

View File

@ -56,14 +56,14 @@ export const Install = observer((props: Props) => {
return ( return (
<section className="mt-2"> <section className="mt-2">
<SubTitle title={`Path or URL to an extension package (${supportedFormats.join(", ")})`}/> <SubTitle title={`Name or file path or URL to an extension package (${supportedFormats.join(", ")})`}/>
<div className="flex"> <div className="flex">
<div className="flex-1"> <div className="flex-1">
<Input <Input
className="box grow mr-6" className="box grow mr-6"
theme="round-black" theme="round-black"
disabled={ExtensionInstallationStateStore.anyPreInstallingOrInstalling} disabled={ExtensionInstallationStateStore.anyPreInstallingOrInstalling}
placeholder={"File path or URL"} placeholder={"Name or file path or URL"}
showErrorsAsTooltip={{ preferredPositions: TooltipPosition.BOTTOM }} showErrorsAsTooltip={{ preferredPositions: TooltipPosition.BOTTOM }}
validators={installPath ? installInputValidator : undefined} validators={installPath ? installInputValidator : undefined}
value={installPath} value={installPath}

View File

@ -7,7 +7,7 @@
@apply overflow-hidden font-bold; @apply overflow-hidden font-bold;
border-bottom: thin solid var(--hrColor); border-bottom: thin solid var(--hrColor);
color: var(--textColorAccent); color: var(--textColorAccent);
padding-top: 6px; padding-top: 7px;
height: 33px; height: 33px;
} }