X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-FE-common%2Fsrc%2Fstyles%2Fbootstrap%2Futilities%2F_background.scss;fp=portal-FE-common%2Fsrc%2Fstyles%2Fbootstrap%2Futilities%2F_background.scss;h=1f18b2f3f36483973876a382d6e1bdc1f346361a;hb=f446cfb57f14004d6b34b137f8fa9802f6fdbdf6;hp=0000000000000000000000000000000000000000;hpb=ffd9af970318c1f5a0bad46d7aad5d4611414aae;p=portal.git diff --git a/portal-FE-common/src/styles/bootstrap/utilities/_background.scss b/portal-FE-common/src/styles/bootstrap/utilities/_background.scss new file mode 100644 index 00000000..1f18b2f3 --- /dev/null +++ b/portal-FE-common/src/styles/bootstrap/utilities/_background.scss @@ -0,0 +1,19 @@ +// stylelint-disable declaration-no-important + +@each $color, $value in $theme-colors { + @include bg-variant(".bg-#{$color}", $value); +} + +@if $enable-gradients { + @each $color, $value in $theme-colors { + @include bg-gradient-variant(".bg-gradient-#{$color}", $value); + } +} + +.bg-white { + background-color: $white !important; +} + +.bg-transparent { + background-color: transparent !important; +}