summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/callout.scss
blob: 643b20c56bc0ef8723b9964cbb2c287db9644a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Callouts from Bootstrap3 docs
 *
 * Not quite alerts, but custom and helpful notes for folks reading the docs.
 * Requires a base and modifier class.
 */

/* Common styles for all types */
.bs-callout {
  margin: $gl-padding 0;
  padding: $gl-padding;
  border-left: 3px solid $border-color;
  color: $text-color;
  background: $gray-light;

  h4 {
    margin-top: 0;
    margin-bottom: 5px;
  }

  p:last-child {
    margin-bottom: 0;
  }
}

/* Variations */
.bs-callout-danger {
  background-color: $red-100;
  border-color: $red-200;
  color: $red-700;

  a {
    color: $red-700;
  }
}

.bs-callout-warning {
  background-color: $orange-100;
  border-color: $orange-200;
  color: $orange-900;

  a {
    color: $orange-900;
  }
}

.bs-callout-info {
  background-color: $blue-100;
  border-color: $blue-200;
  color: $blue-700;
}

.bs-callout-success {
  background-color: $green-100;
  border-color: $green-200;
  color: $green-700;
}