aboutsummaryrefslogtreecommitdiff
path: root/src/notifications_styles/_types.scss
blob: ccfbee258e3c4516f75a34178372dcbe955325bb (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import "_variables.scss";

.rnc__notification-item--default {
  background-color: $default;
  border-left: 8px solid $default_dark;

  .rnc__notification-timer {
    background-color: $default_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $default_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $default;
  }
}

.rnc__notification-item--success {
  background-color: $success;
  border-left: 8px solid $success_dark;

  .rnc__notification-timer {
    background-color: $success_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $success_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $success;
  }
}

.rnc__notification-item--danger {
  background-color: $danger;
  border-left: 8px solid $danger_dark;

  .rnc__notification-timer {
    background-color: $danger_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $danger_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $danger;
  }
}

.rnc__notification-item--info {
  background-color: $info;
  border-left: 8px solid $info_dark;

  .rnc__notification-timer {
    background-color: $info_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $info_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $info;
  }
}

.rnc__notification-item--warning {
  background-color: $warning;
  border-left: 8px solid $warning_dark;

  .rnc__notification-timer {
    background-color: $warning_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $warning_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $warning;
  }
}

.rnc__notification-item--awesome {
  background-color: $awesome;
  border-left: 8px solid $awesome_dark;

  .rnc__notification-timer {
    background-color: $awesome_timer;
  }
  .rnc__notification-timer-filler {
    background-color: $awesome_timer_filler;
  }
  .rnc__notification-close-mark {
    background-color: $awesome;
  }
}