v15.5.0
Before you upgrade, please take note of any breaking changes and deprecation notices which may affect your site. View the Upgrade Guide to see examples of how to address breaking changes.
New features ✨
- new Primary Background variations #1148
.bg-primary-25
.bg-primary-75
<div class="bg-primary-25"></div>
- content inside the Content Block can now be split into
multiple
columns #1152.content-block--2-cols
-two
columns.content-block--3-cols
-three
columns
<div class="content-block content-block--2-cols">
<div class="content-block__inner">...</div>
</div>
- the
first
heading inside a Content Block can span acrossall
columns -.content-block--title-row
#1152
<div class="content-block content-block--2-cols content-block--title-row">
<div class="content-block__inner">...</div>
</div>
- the
first
heading inside a Content Block can sit in thefirst
column while therest
of the content ispushed
to the next column(s) -.content-block--title-col
#1152
<div class="content-block content-block--2-cols content-block--title-col">
<div class="content-block__inner">...</div>
</div>
- new
text-button
mixin #1171
.class {
@mixin text-button;
}
- new Text Button theme vars #1171
--col-btn-text-text
--col-btn-text-text-hover
--col-btn-text-text-active
--col-btn-text-text-disabled
--col-btn-text-bg
--col-btn-text-bg-hover
--col-btn-text-bg-active
--col-btn-text-bg-disabled
--col-btn-text-outline
Bug fixes 🐛
- fixed issue where a
disabled
Text Button had the wrongicon
colour #1171
Other changes
- updated some components to work with
.bg-primary-25
and.bg-primary-75
backgrounds #1148 - updated Page Footer
reconciliation
link to https://www.unimelb.edu.au/reconciliation #1166 - updated
pause
icon #1167 - updated Text Button to use
text-button
mixin #1171 - updated
docker compose
fromv1
➡️v2
asv1
was removed from thegithub actions
package that we use inci
#1168