0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

restore wells and close

This commit is contained in:
Mark Otto 2013-01-16 13:05:20 -08:00
parent ab38493e91
commit 2407217686
2 changed files with 55 additions and 0 deletions

View File

@ -2509,6 +2509,59 @@ fieldset[disabled] .btn-link:hover {
z-index: 1051;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.well-large {
padding: 24px;
border-radius: 6px;
}
.well-small {
padding: 9px;
border-radius: 3px;
}
.close {
float: right;
font-size: 20px;
font-weight: bold;
line-height: 20px;
color: #000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity=40);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.nav {
padding-left: 0;
margin-bottom: 0;

2
less/bootstrap.less vendored
View File

@ -29,6 +29,8 @@
@import "component-animations.less";
@import "glyphicons.less";
@import "dropdowns.less";
@import "wells.less";
@import "close.less";
// Components: Nav
@import "navs.less";