mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Tweak naming and docs of font utility classes
* `.font-normal` is too generic. Rename it to `.font-weight-normal` for clarity. * Rename `.font-bold` to `.font-weight-bold` so as to parallel `.font-weight-normal`. * In docs, gloss "weight" term in relation to fonts for the benefit of non-typographiles. Refs #18433 [skip sauce]
This commit is contained in:
parent
eae036b755
commit
d1a0af8b24
2 changed files with 7 additions and 7 deletions
|
@ -121,13 +121,13 @@ Transform text in components with text capitalization classes.
|
||||||
<p class="text-capitalize">CapiTaliZed text.</p>
|
<p class="text-capitalize">CapiTaliZed text.</p>
|
||||||
{% endexample %}
|
{% endexample %}
|
||||||
|
|
||||||
## Font weight and style
|
## Font weight and italics
|
||||||
|
|
||||||
Quickly change the weight and style of text.
|
Quickly change the weight (boldness) of text or italicize text.
|
||||||
|
|
||||||
{% example html %}
|
{% example html %}
|
||||||
<p class="font-normal">Normal text.</p>
|
<p class="font-weight-bold">Bold text.</p>
|
||||||
<p class="font-bold">Bold text.</p>
|
<p class="font-weight-normal">Normal weight text.</p>
|
||||||
<p class="font-italic">Italicized text.</p>
|
<p class="font-italic">Italicized text.</p>
|
||||||
{% endexample %}
|
{% endexample %}
|
||||||
|
|
||||||
|
|
|
@ -74,9 +74,9 @@
|
||||||
|
|
||||||
// Weight and italics
|
// Weight and italics
|
||||||
|
|
||||||
.font-normal { font-weight: normal; }
|
.font-weight-normal { font-weight: normal; }
|
||||||
.font-bold { font-weight: bold; }
|
.font-weight-bold { font-weight: bold; }
|
||||||
.font-italic { font-style: italic; }
|
.font-italic { font-style: italic; }
|
||||||
|
|
||||||
// Contextual colors
|
// Contextual colors
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue