Commit 0819cfc4 authored by Mark Otto's avatar Mark Otto
Browse files

addressing #9189 manually, part 7: thumbnails vars

parent bf490007
Showing with 6 additions and 3 deletions
+6 -3
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
// Can be `a`, `div`, or `img` // Can be `a`, `div`, or `img`
.thumbnail, .thumbnail,
.img-thumbnail { .img-thumbnail {
padding: 4px; padding: @thumbnail-padding;
line-height: @line-height-base; line-height: @line-height-base;
background-color: @thumbnail-bg; background-color: @thumbnail-bg;
border: 1px solid @thumbnail-border; border: 1px solid @thumbnail-border;
...@@ -37,6 +37,6 @@ a.thumbnail:focus { ...@@ -37,6 +37,6 @@ a.thumbnail:focus {
margin-right: auto; margin-right: auto;
} }
.thumbnail .caption { .thumbnail .caption {
padding: 9px; padding: @thumbnail-caption-padding;
color: @thumbnail-caption-color; color: @thumbnail-caption-color;
} }
...@@ -499,11 +499,14 @@ ...@@ -499,11 +499,14 @@
// Thumbnails // Thumbnails
// ------------------------- // -------------------------
@thumbnail-caption-color: @text-color; @thumbnail-padding: 4px;
@thumbnail-bg: @body-bg; @thumbnail-bg: @body-bg;
@thumbnail-border: #ddd; @thumbnail-border: #ddd;
@thumbnail-border-radius: @border-radius-base; @thumbnail-border-radius: @border-radius-base;
@thumbnail-caption-color: @text-color;
@thumbnail-caption-padding: 9px;
// Wells // Wells
// ------------------------- // -------------------------
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment