Revision 814260 - <label> screen widget rendering

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Revision 814260 - <label> screen widget rendering

Adrian Crum-2
Revision 814260 introduced a regression.

The <label> screen widget was originally an inline element that was rendered as an HTML <span>. Revision 814260 was *supposed* to render <label> as a block element only when it used one of the h1-h3 styles. Instead, the commit makes ALL label widgets a block element - rendering it as an HTML <p> element.

That change breaks a lot of legacy code. If I change it to operate as originally intended, then layout on any screens developed in the last year might break.

I'm not sure what to do. I don't want to break any new code, but at the same time, a lot of screens developed prior to this change are broken.

-Adrian