blob: 23dcbf44543bbe54e524421b5f84b7b2c1fd31f6 (
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
|
.running_processes {
.context {
display: flex;
align-items: center;
.course-avatar-small {
margin-right: 10px;
}
margin-bottom: 10px;
font-size: $font-size-h3;
}
ul.processes {
list-style: none;
padding-left: 35px;
li.running_process {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 10px;
img {
width: 35px;
height: 35px;
margin-right: 10px;
}
.process_right_side {
width: 100%;
.process_text_info {
display: flex;
justify-content: space-between;
.additionalShortInfo {
padding-left: 10px;
color: $light-gray-color;
}
}
.progressbar_container {
height: 5px;
margin-top: 5px;
.progress_bar {
width: 100%;
border-radius: 0px;
height: 5px;
border: none;
background-color: $color--gray-6;
.progress {
background-color: $origin-base-color;
&.alerted {
background-color: $red;
}
height: 5px;
}
}
}
}
}
}
}
|