mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-30 16:50:00 +02:00
fixes #4455: improve small styles and add to docs
This commit is contained in:
45
docs/assets/css/bootstrap.css
vendored
45
docs/assets/css/bootstrap.css
vendored
@@ -580,11 +580,6 @@ p {
|
|||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p small {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #999999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lead {
|
.lead {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
@@ -592,6 +587,26 @@ p small {
|
|||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 85%;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
em {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.muted {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
@@ -730,18 +745,6 @@ hr {
|
|||||||
border-bottom: 1px solid #ffffff;
|
border-bottom: 1px solid #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
em {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.muted {
|
|
||||||
color: #999999;
|
|
||||||
}
|
|
||||||
|
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
cursor: help;
|
cursor: help;
|
||||||
border-bottom: 1px dotted #999999;
|
border-bottom: 1px dotted #999999;
|
||||||
@@ -810,14 +813,6 @@ address {
|
|||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
cite {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
code,
|
||||||
pre {
|
pre {
|
||||||
padding: 0 3px 2px;
|
padding: 0 3px 2px;
|
||||||
|
@@ -141,7 +141,18 @@
|
|||||||
|
|
||||||
|
|
||||||
<h2>Emphasis</h2>
|
<h2>Emphasis</h2>
|
||||||
<p>Make use of HTML's default emphasis tags, <code><strong></code> and <code><em></code>.</p>
|
<p>Make use of HTML's default emphasis tags with lightweight styles.</p>
|
||||||
|
|
||||||
|
<h3><code><small></code></h3>
|
||||||
|
<p>For de-emphasizing inline or blocks of text, <small>use the small tag.</small></p>
|
||||||
|
<div class="bs-docs-example">
|
||||||
|
<p><small>This line of text is meant to be treated as fine print.</small></p>
|
||||||
|
</div>
|
||||||
|
<pre class="prettyprint">
|
||||||
|
<p>
|
||||||
|
<small>This line of text is meant to be treated as fine print.</small>
|
||||||
|
</p>
|
||||||
|
</pre>
|
||||||
|
|
||||||
<h3><code><strong></code></h3>
|
<h3><code><strong></code></h3>
|
||||||
<p>For emphasizing a snippet of text with <strong>important</strong></p>
|
<p>For emphasizing a snippet of text with <strong>important</strong></p>
|
||||||
|
13
docs/templates/pages/base-css.mustache
vendored
13
docs/templates/pages/base-css.mustache
vendored
@@ -75,7 +75,18 @@
|
|||||||
|
|
||||||
{{! Emphasis }}
|
{{! Emphasis }}
|
||||||
<h2>{{_i}}Emphasis{{/i}}</h2>
|
<h2>{{_i}}Emphasis{{/i}}</h2>
|
||||||
<p>{{_i}}Make use of HTML's default emphasis tags, <code><strong></code> and <code><em></code>.{{/i}}</p>
|
<p>{{_i}}Make use of HTML's default emphasis tags with lightweight styles.{{/i}}</p>
|
||||||
|
|
||||||
|
<h3><code><small></code></h3>
|
||||||
|
<p>{{_i}}For de-emphasizing inline or blocks of text, <small>use the small tag.</small>{{/i}}</p>
|
||||||
|
<div class="bs-docs-example">
|
||||||
|
<p><small>This line of text is meant to be treated as fine print.</small></p>
|
||||||
|
</div>
|
||||||
|
<pre class="prettyprint">
|
||||||
|
<p>
|
||||||
|
<small>This line of text is meant to be treated as fine print.</small>
|
||||||
|
</p>
|
||||||
|
</pre>
|
||||||
|
|
||||||
<h3><code><strong></code></h3>
|
<h3><code><strong></code></h3>
|
||||||
<p>{{_i}}For emphasizing a snippet of text with <strong>important</strong>{{/i}}</p>
|
<p>{{_i}}For emphasizing a snippet of text with <strong>important</strong>{{/i}}</p>
|
||||||
|
@@ -8,10 +8,6 @@
|
|||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0 0 @baseLineHeight / 2;
|
margin: 0 0 @baseLineHeight / 2;
|
||||||
small {
|
|
||||||
font-size: @baseFontSize - 2;
|
|
||||||
color: @grayLight;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.lead {
|
.lead {
|
||||||
margin-bottom: @baseLineHeight;
|
margin-bottom: @baseLineHeight;
|
||||||
@@ -21,6 +17,26 @@ p {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Emphasis & misc
|
||||||
|
// -------------------------
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 85%; // Ex: 14px base font * 85% = about 12px
|
||||||
|
}
|
||||||
|
strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
em {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
cite {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
.muted {
|
||||||
|
color: @grayLight;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Headings
|
// Headings
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@@ -123,17 +139,6 @@ hr {
|
|||||||
border-bottom: 1px solid @white;
|
border-bottom: 1px solid @white;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Emphasis
|
|
||||||
strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
em {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
.muted {
|
|
||||||
color: @grayLight;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Abbreviations and acronyms
|
// Abbreviations and acronyms
|
||||||
abbr[title] {
|
abbr[title] {
|
||||||
cursor: help;
|
cursor: help;
|
||||||
@@ -199,11 +204,3 @@ address {
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
line-height: @baseLineHeight;
|
line-height: @baseLineHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Misc
|
|
||||||
small {
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
cite {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
Reference in New Issue
Block a user