-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogress.scss
56 lines (46 loc) · 893 Bytes
/
progress.scss
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
@import 'common';
@import 'bootstrap/scss/progress';
$progress-bg-dark: $white-10;
$progress-bar-bg-dark: $white-95;
.progress {
@include lightTheme {
background-color: $progress-bg;
}
@include darkTheme {
background-color: $progress-bg-dark;
}
}
.progress-bar {
border-radius: $progress-border-radius;
@include lightTheme {
background-color: $progress-bar-bg;
}
@include darkTheme {
background-color: $progress-bar-bg-dark;
}
&.color {
@include lightTheme {
background-color: $link-color;
}
@include darkTheme {
background-color: $link-color-inverted;
}
}
&.success.success {
background-color: $success;
}
&.warning.warning {
background-color: $warning;
}
&.error.error {
background-color: $error;
}
&.on-hold {
@include lightTheme {
background-color: $black-10;
}
@include darkTheme {
background-color: $white-10;
}
}
}