This latest update is pretty hefty. I made extensive changes to CSS while I was "under the hood." I'm not a changelog kinda guy, so if you want a detailed list of every update, I'm sorry. I may throw a partial list on here later, but not today. There is one change you need to be aware of before upgrading...
If you are using this feature prior to the latest update, you will need to change some HTML before updating. Here is a comparison between the old format and the new:
<div class="list-item">
<div class="list-item-left">
<div class="bullet"></div>
</div>
<div class="list-item-main">
First item in a list
</div>
</div>
<div class="list-item">
<div class="list-item-left">
<div class="bullet"></div>
</div>
<div class="list-item-main">
Second list item
</div>
</div>
<ul class="lcars-list">
<li>First item in a list</li>
<li>Second list item</li>
</ul>
Now isn't that better? This is how I should have done the Fancy Oval Bullet List to begin with. But I had my reasons at the time. Here is the output:
There is even a way to change the color of each oval. I am preparing a tutorial which will cover how to do this. Look for it soon on the HTML Elements page. There's also a trick to the new LCARS Text Bar. Again, look for a tutorial soon here. For now, here is the HTML for the text bar, which is available now in today's update...
<div class="lcars-text-bar">
<span>hello world</span>
</div>
LLAP
Jim