bootstrap-override.scss
1.22 KB
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
40
41
42
43
44
45
46
47
48
49
50
@import "../../../node_modules/bootstrap/scss/functions";
@import "../../../node_modules/bootstrap/scss/variables";
@import "../../../node_modules/bootstrap/scss/mixins";
$primary: #2872ae;
$theme-colors: (
primary: $primary,
light: white
);
.popover {
transform: translate3d(-464px, 0, -34px) !important;
min-width: 200px !important;
max-width: 525px !important;
border: none !important;
border-radius: 1.5rem !important;
padding: 0 !important;
background-color: $primary !important;
.popover-body {
padding: 0 !important;
}
}
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
border-left-color: $primary !important;
}
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
border-right-color: $primary !important;
}
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
border-top-color: $primary !important;
}
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
border-bottom-color: $primary !important;
}
.list-group-item.active {
background-color: $primary !important;
border-color: $primary !important;
}
@import "../../../node_modules/bootstrap/scss/bootstrap";