We recently upgraded from release 2017.2.621.440 to release 2019.1.115.
Previously, the following code:
<button id='texCov_setEmpty' class='tcov-button'>1. Set All Adjustments to <span> No </span> Adjustment</button><br /><button id='texCov_setPreferred' class='tcov-button'>2. Set All Adjustments to <span> Preferred </span> Adjustment</button><br /><button id='texCov_setLowest' class='tcov-button'>3. Set All Adjustments to <span> Lowest Overlap </span></button>.tcov-button > span { font-weight: bold;}
would display properly, but with the upgrade to the new release the leading/trailing spaces in the span are removed/ignored (see attached file).
Not a big deal - I fixed it by modifying the CSS:
.tcov-button > span { font-weight: bold; margin-left: 3px; margin-right: 3px;}
I was just wondering if I was doing something, or if an unintended change had occurred at some point?
Thanks, Gregg