You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using jumbotron, the font-size of p elements is increased (cf. #11588). However, the font-size of lists, which are normally used similar to the <p> element, is not increased.
While it is possible to wrap the contents of the <li> elements with a <p>, the numbers in front of them are still not increased, resulting in a weird-looking list. I think the default should rather be to make these lists the same size as <p> text.
Example of current behaviour:
I think this is a regression from 3.0, done in commit 168469f.
I think the correct behaviour would be to add the style changes to <ol>, and not only <p>. The same is obviously true for <ul>, although less visible there.
When using jumbotron, the font-size of p elements is increased (cf. #11588). However, the font-size of lists, which are normally used similar to the
<p>
element, is not increased.While it is possible to wrap the contents of the
<li>
elements with a<p>
, the numbers in front of them are still not increased, resulting in a weird-looking list. I think the default should rather be to make these lists the same size as<p>
text.Example of current behaviour:
I think this is a regression from 3.0, done in commit 168469f.
I think the correct behaviour would be to add the style changes to
<ol>
, and not only<p>
. The same is obviously true for<ul>
, although less visible there.Correct me, if I am wrong.
Minimal example http://codepen.io/anon/pen/qKlCd/
The text was updated successfully, but these errors were encountered: