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:
parent
4771c7755c
commit
ba54a64ebb
@ -20,6 +20,7 @@
|
||||
padding-left: 8px;
|
||||
margin-right: -8px;
|
||||
padding-right: 8px;
|
||||
line-height: 1.1;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
|
||||
@ -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
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
|
||||
@ -49,6 +49,7 @@ html {
|
||||
|
||||
&__single-value {
|
||||
color: var(--textColorSecondary);
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
&__indicator {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user