You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.0 KiB
56 lines
1.0 KiB
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # Wells component
|
||
|
*
|
||
|
* Overrides for wells bootstrap component
|
||
|
*
|
||
|
* Version: 1.1
|
||
|
* Latest update: Mar 10, 2016
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
|
||
|
// Base class
|
||
|
// -------------------------
|
||
|
|
||
|
.well {
|
||
|
margin-bottom: 0;
|
||
|
padding: @panel-body-padding;
|
||
|
.box-shadow(none);
|
||
|
|
||
|
// White background
|
||
|
&-white {
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
// Border radius fix
|
||
|
&[class*=border-top-] {
|
||
|
.border-top-radius(0);
|
||
|
}
|
||
|
&[class*=border-bottom-] {
|
||
|
.border-bottom-radius(0);
|
||
|
}
|
||
|
&[class*=border-left-] {
|
||
|
.border-left-radius(0);
|
||
|
}
|
||
|
&[class*=border-right-] {
|
||
|
.border-right-radius(0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Sizes
|
||
|
// -------------------------
|
||
|
|
||
|
// Large
|
||
|
.well-lg {
|
||
|
padding: (@panel-body-padding + 5);
|
||
|
border-radius: @border-radius-base;
|
||
|
}
|
||
|
|
||
|
// Small
|
||
|
.well-sm {
|
||
|
padding: (@panel-body-padding - 5);
|
||
|
border-radius: @border-radius-base;
|
||
|
}
|