Skip to content

Commit

Permalink
Merge pull request #11286 from BBosman/well-border
Browse files Browse the repository at this point in the history
Add well-border variable
  • Loading branch information
mdo committed Dec 15, 2013
2 parents 544b8ec + b8f9f82 commit 4afcebe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions customize.html
Original file line number Diff line number Diff line change
Expand Up @@ -1147,6 +1147,8 @@ <h4>Danger</h4>
<h3>Wells</h3>
<label>@well-bg</label>
<input type="text" class="form-control" placeholder="#f5f5f5" data-var="@well-bg">
<label>@well-border</label>
<input type="text" class="form-control" placeholder="darken(@well-bg, 7%)" data-var="@well-border">


<h2 id="variables-accordion">Accordion</h2>
Expand Down
1 change: 1 addition & 0 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,7 @@
// Wells
// -------------------------
@well-bg: #f5f5f5;
@well-border: darken(@well-bg, 7%);


// Badges
Expand Down
2 changes: 1 addition & 1 deletion less/wells.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
padding: 19px;
margin-bottom: 20px;
background-color: @well-bg;
border: 1px solid darken(@well-bg, 7%);
border: 1px solid @well-border;
border-radius: @border-radius-base;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
blockquote {
Expand Down

0 comments on commit 4afcebe

Please sign in to comment.