diff options
| author | Mark Otto <[email protected]> | 2013-08-11 19:32:16 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-11 19:32:16 -0700 |
| commit | 0819cfc4503ffc2084f9358b9c896b50c0ddf864 (patch) | |
| tree | ebd0f1e32eb057164e0c4ccda6a0a2c8ec4498fd | |
| parent | bf4900072dba32ba6db36321f6d3175bd4b43718 (diff) | |
| download | bootstrap-0819cfc4503ffc2084f9358b9c896b50c0ddf864.tar.xz bootstrap-0819cfc4503ffc2084f9358b9c896b50c0ddf864.zip | |
addressing #9189 manually, part 7: thumbnails vars
| -rw-r--r-- | less/thumbnails.less | 4 | ||||
| -rw-r--r-- | less/variables.less | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/less/thumbnails.less b/less/thumbnails.less index 1f896708d..d209412dc 100644 --- a/less/thumbnails.less +++ b/less/thumbnails.less @@ -10,7 +10,7 @@ // Can be `a`, `div`, or `img` .thumbnail, .img-thumbnail { - padding: 4px; + padding: @thumbnail-padding; line-height: @line-height-base; background-color: @thumbnail-bg; border: 1px solid @thumbnail-border; @@ -37,6 +37,6 @@ a.thumbnail:focus { margin-right: auto; } .thumbnail .caption { - padding: 9px; + padding: @thumbnail-caption-padding; color: @thumbnail-caption-color; } diff --git a/less/variables.less b/less/variables.less index bf180aff6..f2a622fbe 100644 --- a/less/variables.less +++ b/less/variables.less @@ -499,11 +499,14 @@ // Thumbnails // ------------------------- -@thumbnail-caption-color: @text-color; +@thumbnail-padding: 4px; @thumbnail-bg: @body-bg; @thumbnail-border: #ddd; @thumbnail-border-radius: @border-radius-base; +@thumbnail-caption-color: @text-color; +@thumbnail-caption-padding: 9px; + // Wells // ------------------------- |
