Unverified Commit 7274658b authored by Alex Andreev's avatar Alex Andreev Committed by GitHub
Browse files

Wider Select box for Helm chart installation (#803)


* Fixing typo
Signed-off-by: default avatarAlex Andreev <alex.andreev.email@gmail.com>

* Fine-tuning select to show long items
Signed-off-by: default avatarAlex Andreev <alex.andreev.email@gmail.com>
parent 26e031fc
Showing with 8 additions and 3 deletions
+8 -3
......@@ -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;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment