Skip to content

Enable truncation of long labels within table cell. #1231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/styles/_core.less
Original file line number Diff line number Diff line change
Expand Up @@ -1145,13 +1145,17 @@ pre.clipped {
margin-right: 5px;
// A bit more space below the actions button.
margin-top: 3px;
width: 100%; // needed to enable truncation within table
&:before {
content: ' ';
white-space: normal;
}
.label-pair {
margin-bottom: 2px;
width: 100%; // needed to enable truncation within table
.label {
// prevent short label-key or label-value from being truncated less than 4 characters
min-width: 50px;
&:first-child {
border-radius: 2px 0 0 2px;
}
Expand Down
5 changes: 3 additions & 2 deletions dist/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4004,9 +4004,10 @@ status-icon .spinner.spinner-inline{margin-left:.153846em;margin-right:.153846em
.last-status status-icon .spinner.spinner-inline{margin-left:4px;margin-right:4px}
pre.clipped{display:inline-block;margin-top:10px;max-width:100%}
pre.clipped.scroll{max-height:150px;overflow:auto;width:100%}
.k8s-label{margin-right:5px;margin-top:3px}
.k8s-label{margin-right:5px;margin-top:3px;width:100%}
.k8s-label:before{content:' ';white-space:normal}
.k8s-label .label-pair{margin-bottom:2px}
.k8s-label .label-pair{margin-bottom:2px;width:100%}
.k8s-label .label-pair .label{min-width:50px}
.k8s-label .label-pair .label:first-child{border-radius:2px 0 0 2px}
.k8s-label .label-pair .label:last-child{border-radius:0 2px 2px 0}
.k8s-label .label-pair .label-key{background-color:#bee1f4;color:#00659c;padding-top:4px;padding-bottom:4px;margin-left:0;font-size:12px}
Expand Down