Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2012-01-30 13:20:51 +0400
committerMark Otto <markdotto@gmail.com>2012-01-30 13:20:51 +0400
commitf4e5bc1c536f0e2bd77958dd5575863808d4cfe4 (patch)
tree9cdbbc64bd48c5bac65b12cd9daf29b569514da0 /less/popovers.less
parentdb31efb99587cea660ba5359665b4a6828d9f384 (diff)
namespace popover values
Diffstat (limited to 'less/popovers.less')
-rw-r--r--less/popovers.less50
1 files changed, 25 insertions, 25 deletions
diff --git a/less/popovers.less b/less/popovers.less
index 6de314d860..558d99ec99 100644
--- a/less/popovers.less
+++ b/less/popovers.less
@@ -21,29 +21,29 @@
width: 0;
height: 0;
}
- .inner {
- padding: 3px;
- width: 280px;
- overflow: hidden;
- background: @black; // has to be full background declaration for IE fallback
- background: rgba(0,0,0,.8);
- .border-radius(6px);
- .box-shadow(0 3px 7px rgba(0,0,0,0.3));
+}
+.popover-inner {
+ padding: 3px;
+ width: 280px;
+ overflow: hidden;
+ background: @black; // has to be full background declaration for IE fallback
+ background: rgba(0,0,0,.8);
+ .border-radius(6px);
+ .box-shadow(0 3px 7px rgba(0,0,0,0.3));
+}
+.popover-title {
+ padding: 9px 15px;
+ line-height: 1;
+ background-color: #f5f5f5;
+ border-bottom:1px solid #eee;
+ .border-radius(3px 3px 0 0);
+}
+.popover-content {
+ padding: 14px;
+ background-color: @white;
+ .border-radius(0 0 3px 3px);
+ .background-clip(padding-box);
+ p, ul, ol {
+ margin-bottom: 0;
}
- .title {
- padding: 9px 15px;
- line-height: 1;
- background-color: #f5f5f5;
- border-bottom:1px solid #eee;
- .border-radius(3px 3px 0 0);
- }
- .content {
- padding: 14px;
- background-color: @white;
- .border-radius(0 0 3px 3px);
- .background-clip(padding-box);
- p, ul, ol {
- margin-bottom: 0;
- }
- }
-} \ No newline at end of file
+}