The content of
<tc:bar>
needs to be checked.
The layout inside of the bar has been changed by CSS.
There is a new after-facet for right side content. Old code which uses
<tc:flowLayout align=right>
probably doesn't work correctly.
Replace the following code...
<tc:bar>
<tc:flowLayout textAlign="right">
// right side content
</tc:flowLayout>
</tc:bar>
... with this:
<tc:bar>
<f:facet name="after">
<tc:flexLayout columns="1fr auto">
// right side content
</tc:flexLayout>
</f:facet>
</tc:bar>
Also new markups are added to change collapse/expand behavior and color scheme.
For more information have a look at
tc:bar