[frontend/components] Prevent overly long instance names from overflowing
This commit is contained in:
parent
17561f8401
commit
1daaf83f88
2 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
min-width: 0;
|
||||||
|
overflow: clip;
|
||||||
|
flex-basis: 50%;
|
||||||
|
flex-shrink: 2;
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -22,5 +26,7 @@
|
||||||
}
|
}
|
||||||
.instance {
|
.instance {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: clip;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,8 +8,6 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: clip;
|
overflow: clip;
|
||||||
}
|
}
|
||||||
|
|
||||||
flex-shrink: 1;
|
|
||||||
min-width: 2rem;
|
min-width: 2rem;
|
||||||
overflow: clip;
|
overflow: clip;
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
|
Loading…
Add table
Reference in a new issue