aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/bootstrap/mixins/_alerts.scss
blob: b092e85eb442d4c2df93cbea46cb0c2ce7eee18c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Alerts

@mixin alert-variant($background, $border, $text-color) {
  background-color: $background;
  border-color: $border;
  color: $text-color;

  hr {
	border-top-color: darken($border, 5%);
  }
  .alert-link {
	color: darken($text-color, 10%);
  }
}