Commit 4313141c2829ebacb8ac1ddc220cc16b164152e1
1 parent
f1cb82284a
Exists in
master
Cambio en clase css.
Showing
1 changed file
with
14 additions
and
12 deletions
Show diff stats
src/assets/scss/bootstrap-override.scss
1 | 1 | @import "../../../node_modules/bootstrap/scss/functions"; |
2 | 2 | @import "../../../node_modules/bootstrap/scss/variables"; |
3 | -@import "../../../node_modules/bootstrap/scss/bootstrap.scss"; | |
3 | +@import "../../../node_modules/bootstrap/scss/mixins"; | |
4 | + | |
5 | +$primary: #2872ae; | |
4 | 6 | |
5 | 7 | $theme-colors: ( |
6 | - primary: #2872ae !important, | |
7 | - light: white !important | |
8 | + primary: $primary, | |
9 | + light: white | |
8 | 10 | ); |
9 | 11 | |
10 | -$primary: #2872ae !important; | |
11 | - | |
12 | 12 | .popover { |
13 | 13 | transform: translate3d(-464px, 0, -34px) !important; |
14 | 14 | min-width: 200px !important; |
... | ... | @@ -16,7 +16,7 @@ $primary: #2872ae !important; |
16 | 16 | border: none !important; |
17 | 17 | border-radius: 1.5rem !important; |
18 | 18 | padding: 0 !important; |
19 | - background-color: #2872ae; | |
19 | + background-color: $primary !important; | |
20 | 20 | .popover-body { |
21 | 21 | padding: 0 !important; |
22 | 22 | } |
... | ... | @@ -24,25 +24,27 @@ $primary: #2872ae !important; |
24 | 24 | |
25 | 25 | .bs-popover-left .arrow::after, |
26 | 26 | .bs-popover-auto[x-placement^="left"] .arrow::after { |
27 | - border-left-color: #2872ae !important; | |
27 | + border-left-color: $primary !important; | |
28 | 28 | } |
29 | 29 | |
30 | 30 | .bs-popover-right .arrow::after, |
31 | 31 | .bs-popover-auto[x-placement^="right"] .arrow::after { |
32 | - border-right-color: #2872ae !important; | |
32 | + border-right-color: $primary !important; | |
33 | 33 | } |
34 | 34 | |
35 | 35 | .bs-popover-top .arrow::after, |
36 | 36 | .bs-popover-auto[x-placement^="top"] .arrow::after { |
37 | - border-top-color: #2872ae !important; | |
37 | + border-top-color: $primary !important; | |
38 | 38 | } |
39 | 39 | |
40 | 40 | .bs-popover-bottom .arrow::after, |
41 | 41 | .bs-popover-auto[x-placement^="bottom"] .arrow::after { |
42 | - border-bottom-color: #2872ae !important; | |
42 | + border-bottom-color: $primary !important; | |
43 | 43 | } |
44 | 44 | |
45 | 45 | .list-group-item.active { |
46 | - background-color: #2872ae !important; | |
47 | - border-color: #2872ae !important; | |
46 | + background-color: $primary !important; | |
47 | + border-color: $primary !important; | |
48 | 48 | } |
49 | + | |
50 | +@import "../../../node_modules/bootstrap/scss/bootstrap"; |