Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
2.2.0 (Feature release)
🆕 New features:
Allow classes on table header and row cells
Optional classes attribute can now be used on table header and row cell item
in the Nunjucks macro
(PR #1015)
Add character count component
(PR #959)
🔧 Fixes:
Apply max-width to the
<select>
elementThe
<select>
element's width is governed by the widths of its<option>
's.When the text in the options grows large, the element can grow to > 100% of the width of its container and break the layout.
(PR #1013)
Prevent product name in header from wrapping
Currently the product name in the header wraps when the space shrinks which doesn't look great.
Adding
display: inline-table
prevents that so that the product name as a whole drops to a new line when space is shrunk.(PR #1007)
Set text colour for radios divider
(PR 1023)
Stop links styled as button from being dragged
Moving the mouse over a link while its button is depressed causes the
browser’s dragging behaviour to trigger (and prevents the
click
event from firing). This is contrary to how actual
<button>
elementswork. This pull request makes the behaviour of links styled as buttons
consistent with that of buttons.
(PR #1020)