Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//
2
// Base styles
3
//
4
 
5
.alert {
6
  position: relative;
7
  padding: $alert-padding-y $alert-padding-x;
8
  margin-bottom: $alert-margin-bottom;
9
  border: $alert-border-width solid transparent;
10
  @include border-radius($alert-border-radius);
11
}
12
 
13
// Headings for larger alerts
14
.alert-heading {
15
  // Specified to prevent conflicts of changing $headings-color
16
  color: inherit;
17
}
18
 
19
// Provide class for links that match alerts
20
.alert-link {
21
  font-weight: $alert-link-font-weight;
22
}
23
 
24
 
25
// Dismissible alerts
26
//
27
// Expand the right padding and account for the close button's positioning.
28
 
29
.alert-dismissible {
30
  padding-right: $close-font-size + $alert-padding-x * 2;
31
 
32
  // Adjust close link position
33
  .close {
34
    position: absolute;
35
    top: 0;
36
    right: 0;
37
    z-index: 2;
38
    padding: $alert-padding-y $alert-padding-x;
39
    color: inherit;
40
  }
41
}
42
 
43
 
44
// Alternate styles
45
//
46
// Generate contextual modifier classes for colorizing the alert.
47
 
48
@each $color, $value in $theme-colors {
49
  .alert-#{$color} {
50
    @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
51
  }
52
}