diff options
| author | Chris Rebert <[email protected]> | 2016-02-16 22:37:38 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-16 22:37:38 -0800 |
| commit | 0b739541b7440e412ee0651d308f6fe2fa55e79f (patch) | |
| tree | 2268b07bb22df0f12fe5bf7ef31830a6218acbe7 /scss | |
| parent | 79c955f01921b8ab7b28c18406b01591e80d4703 (diff) | |
| parent | 3a4dbd9b3aa4cdcff4ab23605286e7a37c8fae48 (diff) | |
| download | bootstrap-0b739541b7440e412ee0651d308f6fe2fa55e79f.tar.xz bootstrap-0b739541b7440e412ee0651d308f6fe2fa55e79f.zip | |
Merge pull request #19244 from twbs/figure-caption-font-size
Add $figure-caption-font-size variable
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_images.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/scss/_images.scss b/scss/_images.scss index 410a09e36..d17006df2 100644 --- a/scss/_images.scss +++ b/scss/_images.scss @@ -47,6 +47,6 @@ } .figure-caption { - font-size: 90%; + font-size: $figure-caption-font-size; color: $gray-light; } diff --git a/scss/_variables.scss b/scss/_variables.scss index c02af45f5..78719df06 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -737,6 +737,11 @@ $thumbnail-border-radius: $border-radius !default; $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075) !default; +// Figures + +$figure-caption-font-size: 90% !default; + + // Breadcrumbs $breadcrumb-padding-y: .75rem !default; |
