APEX 5.1.4
The Universal Theme sample application appears to use some custom styling to render the fa-check-circle Font Awesome icon with a filled background color. The color is hard coded to rgba(0,181,51,.75) in the CSS.
<span class="#ICON# t-Icon #BG_COLOR#"> #NUM#</span>
With this markup, if #ICON# has the value fa fa-check-circle and #BG_COLOR# has the value u-success-bg, the effect is not the same. The entire SPAN gets the background color instead of just filling in the icon.
See https://apex.oracle.com/pls/apex/f?p=134181:6 for a quick example.
How can I achieve the same effect as the UT Sample Application?
@"fac586"
Edit: Duh, u-success-text appears to do what I need and I don't really need the t-Icon class.
Thanks