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 | @import "../../../node_modules/bootstrap/scss/functions"; | 1 | @import "../../../node_modules/bootstrap/scss/functions"; | 
| 2 | @import "../../../node_modules/bootstrap/scss/variables"; | 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 | $theme-colors: ( | 7 | $theme-colors: ( | 
| 6 | primary: #2872ae !important, | 8 | primary: $primary, | 
| 7 | light: white !important | 9 | light: white | 
| 8 | ); | 10 | ); | 
| 9 | 11 | ||
| 10 | $primary: #2872ae !important; | ||
| 11 | |||
| 12 | .popover { | 12 | .popover { | 
| 13 | transform: translate3d(-464px, 0, -34px) !important; | 13 | transform: translate3d(-464px, 0, -34px) !important; | 
| 14 | min-width: 200px !important; | 14 | min-width: 200px !important; | 
| 15 | max-width: 525px !important; | 15 | max-width: 525px !important; | 
| 16 | border: none !important; | 16 | border: none !important; | 
| 17 | border-radius: 1.5rem !important; | 17 | border-radius: 1.5rem !important; | 
| 18 | padding: 0 !important; | 18 | padding: 0 !important; | 
| 19 | background-color: #2872ae; | 19 | background-color: $primary !important; | 
| 20 | .popover-body { | 20 | .popover-body { | 
| 21 | padding: 0 !important; | 21 | padding: 0 !important; | 
| 22 | } | 22 | } | 
| 23 | } | 23 | } | 
| 24 | 24 | ||
| 25 | .bs-popover-left .arrow::after, | 25 | .bs-popover-left .arrow::after, | 
| 26 | .bs-popover-auto[x-placement^="left"] .arrow::after { | 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 | .bs-popover-right .arrow::after, | 30 | .bs-popover-right .arrow::after, | 
| 31 | .bs-popover-auto[x-placement^="right"] .arrow::after { | 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 | .bs-popover-top .arrow::after, | 35 | .bs-popover-top .arrow::after, | 
| 36 | .bs-popover-auto[x-placement^="top"] .arrow::after { | 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 | .bs-popover-bottom .arrow::after, | 40 | .bs-popover-bottom .arrow::after, | 
| 41 | .bs-popover-auto[x-placement^="bottom"] .arrow::after { | 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 | .list-group-item.active { | 45 | .list-group-item.active { | 
| 46 | background-color: #2872ae !important; | 46 | background-color: $primary !important; | 
| 47 | border-color: #2872ae !important; | 47 | border-color: $primary !important; | 
| 48 | } | 48 | } | 
| 49 |