From: Bas Bosman Date: Wed, 30 Oct 2013 13:10:16 +0000 (+0100) Subject: Add well-border variable X-Git-Tag: v3.1.0~145^2^2~16^2^2~1^2^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8f9f82d182d8300246ba9c4e75a5db6e77f62d3;p=thirdparty%2Fbootstrap.git Add well-border variable Add a variable to allow the well border color to be specified. The reason I'd like to see this included is that my companies styleguide requires an explicit border color on well-like constructs. This variable allows me to easily override the default to use that color. --- diff --git a/customize.html b/customize.html index 5b6a09c40d..794f1c3f45 100644 --- a/customize.html +++ b/customize.html @@ -1147,6 +1147,8 @@ base_url: "../"

Wells

+ +

Accordion

diff --git a/less/variables.less b/less/variables.less index e596215d06..758116763d 100644 --- a/less/variables.less +++ b/less/variables.less @@ -545,6 +545,7 @@ // Wells // ------------------------- @well-bg: #f5f5f5; +@well-border: darken(@well-bg, 7%); // Badges diff --git a/less/wells.less b/less/wells.less index 865abc2eb6..15d072b0cd 100644 --- a/less/wells.less +++ b/less/wells.less @@ -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 {