style: fix up very long tag word breaking the allocation service table width (#11995)
This commit is contained in:
parent
0600bc32e2
commit
5faf344152
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
ui: break long service tags into multiple lines
|
||||
```
|
|
@ -1,4 +1,4 @@
|
|||
@use "sass:math";
|
||||
@use 'sass:math';
|
||||
|
||||
.table {
|
||||
color: $text;
|
||||
|
@ -103,6 +103,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
&.is-long-text {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
// Only use px modifiers when text needs to be truncated.
|
||||
// In this and only this scenario are percentages not effective.
|
||||
&.is-200px {
|
||||
|
|
|
@ -173,7 +173,7 @@
|
|||
<tr data-test-service>
|
||||
<td data-test-service-name>{{row.model.name}}</td>
|
||||
<td data-test-service-port>{{row.model.portLabel}}</td>
|
||||
<td data-test-service-tags>{{join ", " row.model.tags}}</td>
|
||||
<td data-test-service-tags class="is-long-text">{{join ", " row.model.tags}}</td>
|
||||
<td data-test-service-onupdate>{{row.model.onUpdate}}</td>
|
||||
<td data-test-service-connect>{{if row.model.connect "Yes" "No"}}</td>
|
||||
<td data-test-service-upstreams>
|
||||
|
|
Loading…
Reference in New Issue