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

Fix <Select/> text overflow below baseline (#6085)

* Fix: do not crop <Select/> single value

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Fix: do not crop namespace selector placeholder

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Align working dir input height with others

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Linter fix

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-08-23 19:19:15 +03:00 committed by GitHub
parent 4771c7755c
commit ba54a64ebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,7 @@
padding-left: 8px;
margin-right: -8px;
padding-right: 8px;
line-height: 1.1;
&::-webkit-scrollbar {
display: none;

View File

@ -112,6 +112,8 @@ const NonInjectedClusterLocalTerminalSetting = observer(({ cluster, showErrorNot
material="close"
title="Clear"
onClick={() => setAndCommitDirectory("")}
smallest
style={{ marginRight: "var(--margin)" }}
/>
)
}
@ -119,6 +121,7 @@ const NonInjectedClusterLocalTerminalSetting = observer(({ cluster, showErrorNot
material="folder"
title="Pick from filesystem"
onClick={openFilePicker}
smallest
/>
</>
)}

View File

@ -49,6 +49,7 @@ html {
&__single-value {
color: var(--textColorSecondary);
overflow: visible;
}
&__indicator {