Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
// stylelint-disable declaration-no-important
2
 
3
@each $color, $value in $theme-colors {
4
  @include bg-variant(".bg-#{$color}", $value, true);
5
}
6
 
7
@if $enable-gradients {
8
  @each $color, $value in $theme-colors {
9
    @include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
10
  }
11
}
12
 
13
.bg-white {
14
  background-color: $container-bg !important;
15
 
16
  .theme-dark & {
17
    background-color: $dm-container-bg !important;
18
  }
19
}
20
 
21
.bg-transparent {
22
  background-color: transparent !important;
23
}