diff static/bootstrap/less/wells.less @ 149:d29e2f337b00

Updated to Bootstrap 3.0.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 12 Dec 2013 21:54:04 -0800
parents 130eccd396d8
children
line wrap: on
line diff
--- a/static/bootstrap/less/wells.less	Wed Dec 11 21:51:51 2013 -0800
+++ b/static/bootstrap/less/wells.less	Thu Dec 12 21:54:04 2013 -0800
@@ -8,9 +8,9 @@
   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;
@@ -19,11 +19,11 @@
 }
 
 // Sizes
-.well-large {
+.well-lg {
   padding: 24px;
-  .border-radius(@borderRadiusLarge);
+  border-radius: @border-radius-large;
 }
-.well-small {
+.well-sm {
   padding: 9px;
-  .border-radius(@borderRadiusSmall);
+  border-radius: @border-radius-small;
 }