_popovers.scss
839 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/***
Customized Bootstrap Popover
***/
.popover {
box-shadow: 5px 5px rgba(#666, 0.1);
padding: 0;
.popover-title {
margin: 0 !important;
}
}
@mixin popover-variant($name, $color) {
.popover.#{name} .popover-title,
#{name} .popover .popover-content,
.popover.#{name} .popover-content {
color: $color;
}
}
@include popover-variant("info", $brand-info);
@include popover-variant("primary", $brand-primary);
@include popover-variant("success", $brand-success);
@include popover-variant("warning", $brand-warning);
@include popover-variant("danger", $brand-danger);
/* popover colors*/
.popovers.yellow + .popover {
background: yellow;
}
.popovers.yellow + .popover .popover-title {
background: yellow;
}
.popovers.yellow + .popover .popover-content {
background: yellow;
}