diff options
| author | Mark Otto <[email protected]> | 2013-10-12 16:58:49 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-12 16:58:49 -0700 |
| commit | 570aa8a30936a122abb37b78d48e85c6c67157db (patch) | |
| tree | 4a5f8b5f9f1533893b5ab52844ce9b74c66f6265 | |
| parent | d82650102cfeca25a8af8f818df9e7d5678cd939 (diff) | |
| parent | 8098f4e5ba36814030304867092aa268aaf370f1 (diff) | |
| download | bootstrap-570aa8a30936a122abb37b78d48e85c6c67157db.tar.xz bootstrap-570aa8a30936a122abb37b78d48e85c6c67157db.zip | |
Merge pull request #11059 from ZDroid/patch-5
Add more functionality to .small to match <small>
| -rw-r--r-- | less/type.less | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/less/type.less b/less/type.less index 55e5e1d77..e5544ab3e 100644 --- a/less/type.less +++ b/less/type.less @@ -82,7 +82,8 @@ h1, h2, h3, h4, h5, h6, line-height: @headings-line-height; color: @headings-color; - small { + small, + .small { font-weight: normal; line-height: 1; color: @headings-small-color; @@ -95,7 +96,8 @@ h3 { margin-top: @line-height-computed; margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 65%; } } @@ -105,7 +107,8 @@ h6 { margin-top: (@line-height-computed / 2); margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 75%; } } @@ -240,10 +243,12 @@ blockquote { border-right: 5px solid @blockquote-border-color; border-left: 0; p, - small { + small, + .small { text-align: right; } - small { + small, + .small { &:before { content: ''; } |
