@downpw Thanks for the confirmation. This is indeed quite odd, as the classes, despite being at the bottom of the file, do not appear in the DOM. If I apply them manually
Everything works as I expected
Looking at your CSS, I can see why
Note that you are missing a closing curly brace on what should be line 2716 so this explains why the remaining CSS is not being loaded !
This block also has a stray asterisk
.message-body, .btn-xs.btn-link {
margin-left: -2px !important;
margin-right: 1px !important;
}*
Should be
.message-body, .btn-xs.btn-link {
margin-left: -2px !important;
margin-right: 1px !important;
}