Skip to content

Commit

Permalink
Merge pull request eclipse-che#4680 from eclipse/CHE-4628
Browse files Browse the repository at this point in the history
CHE-4628: shrink machine and command names in processes list when text is too long
  • Loading branch information
azatsarynnyy authored Apr 4, 2017
2 parents 2b94e77 + 2efcea1 commit ac7a07f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,18 @@
.processWidgetMachineNameLabel {
float: left;
color: #a3a3a3;
overflow: hidden;
text-overflow: ellipsis;
max-width: literal("calc(100% - 50px)");
}

.processWidgetCommandNameLabel {
float: left;
color: #e3e3e3;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
max-width: literal("calc(100% - 200px)");
}

.processWidgetPidLabel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
}

.rightPanel {
min-width: 0;
width: 100%;
float: left;
height: inherit;
Expand Down

0 comments on commit ac7a07f

Please sign in to comment.