Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// Bootstrap Alert
2
 
3
@each $state, $value in $theme-colors {
4
  // Basic alerts
5
  .alert-#{$state} {
6
    background-color: rgba($value, .1);
7
    color: darken($value, 5%);
8
    border-color: rgba($value, .2);
9
    .alert-link {
10
      color: darken($value, 5%);
11
    }
12
    svg {
13
      width: 19px;
14
      height: 19px;
15
      margin-right: .5rem;
16
    }
17
    i {
18
      font-size: 19px;
19
      margin-right: .5rem;
20
    }
21
  }
22
 
23
  // Fill alerts
24
  .alert-fill-#{$state} {
25
    @include alert-variant($value, $value, $white);
26
    &.alert-fill-light {
27
      color: $text-muted;
28
    }
29
  }
30
}
31