From 2407217686cda083d0c560733f159421b77bd0fe Mon Sep 17 00:00:00 2001
From: Mark Otto <otto@github.com>
Date: Wed, 16 Jan 2013 13:05:20 -0800
Subject: [PATCH] restore wells and close

---
 docs/assets/css/bootstrap.css | 53 +++++++++++++++++++++++++++++++++++
 less/bootstrap.less           |  2 ++
 2 files changed, 55 insertions(+)

diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 1bb409d372..1709210992 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -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;
diff --git a/less/bootstrap.less b/less/bootstrap.less
index 66797e694d..49e3e9af44 100644
--- a/less/bootstrap.less
+++ b/less/bootstrap.less
@@ -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";
-- 
GitLab