mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
b8f9f82d18
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.
29 lines
527 B
Text
29 lines
527 B
Text
//
|
|
// Wells
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Base class
|
|
.well {
|
|
min-height: 20px;
|
|
padding: 19px;
|
|
margin-bottom: 20px;
|
|
background-color: @well-bg;
|
|
border: 1px solid @well-border;
|
|
border-radius: @border-radius-base;
|
|
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
|
|
blockquote {
|
|
border-color: #ddd;
|
|
border-color: rgba(0,0,0,.15);
|
|
}
|
|
}
|
|
|
|
// Sizes
|
|
.well-lg {
|
|
padding: 24px;
|
|
border-radius: @border-radius-large;
|
|
}
|
|
.well-sm {
|
|
padding: 9px;
|
|
border-radius: @border-radius-small;
|
|
}
|