Merge "Fix ellipsis on long strings in parameter search widget"

This commit is contained in:
jenkins-bot 2021-07-16 12:48:53 +00:00 committed by Gerrit Code Review
commit 575d4a8376
2 changed files with 2 additions and 4 deletions

View file

@ -22,8 +22,7 @@
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
/* HACK: Based on the expected width of this widget, using % produces unreliable results */
max-width: 33em;
max-width: 100%;
font-weight: bold;
float: left;
}

View file

@ -24,8 +24,7 @@
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
/* HACK: Based on the expected width of this widget, using % produces unreliable results */
max-width: 33em;
max-width: 100%;
}
.ve-ui-mwParameterResultWidget-label {