vendor/frameworks/twitter/bootstrap/wells.less in less-rails-bootstrap-2.3.3 vs vendor/frameworks/twitter/bootstrap/wells.less in less-rails-bootstrap-3.0.0.rc1
- old
+ new
@@ -6,24 +6,24 @@
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
- background-color: @wellBackground;
- border: 1px solid darken(@wellBackground, 7%);
- .border-radius(@baseBorderRadius);
+ background-color: @well-bg;
+ border: 1px solid darken(@well-bg, 7%);
+ 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-large {
padding: 24px;
- .border-radius(@borderRadiusLarge);
+ border-radius: @border-radius-large;
}
.well-small {
padding: 9px;
- .border-radius(@borderRadiusSmall);
+ border-radius: @border-radius-small;
}