mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Wider Select box for Helm chart installation (#803)
* Fixing typo Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fine-tuning select to show long items Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
26e031fc58
commit
7274658b51
@ -25,7 +25,6 @@
|
||||
|
||||
.version {
|
||||
.Select {
|
||||
width: 80px;
|
||||
min-width: 80px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@ export class Status extends React.Component<Props> {
|
||||
const rows = [
|
||||
["Online Status", cluster.online ? "online" : `offline (${cluster.failureReason || "unknown reason"})`],
|
||||
["Distribution", cluster.distribution],
|
||||
["Kerbel Version", cluster.version],
|
||||
["Kernel Version", cluster.version],
|
||||
["API Address", cluster.apiUrl],
|
||||
["Nodes Count", cluster.nodes || "0"]
|
||||
];
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
}
|
||||
|
||||
&.chart-version {
|
||||
min-width: 80px;
|
||||
min-width: 130px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -70,11 +70,15 @@ html {
|
||||
&__menu {
|
||||
background: var(--select-menu-bgc);
|
||||
box-shadow: inset 0 0 0 1px var(--select-menu-border-color);
|
||||
width: max-content;
|
||||
min-width: 100%;
|
||||
|
||||
&-list {
|
||||
@include custom-scrollbar;
|
||||
padding-right: 1px;
|
||||
padding-left: 1px;
|
||||
width: max-content;
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
&-notice {
|
||||
@ -83,6 +87,8 @@ html {
|
||||
}
|
||||
|
||||
&__option {
|
||||
white-space: nowrap;
|
||||
|
||||
&:active {
|
||||
background: $primary;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user