blob: 00c17e6aabe7095e96e33c478ee7d3f943c7afc9 (
plain) (
blame)
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
|
.transaction-activity-log {
&__title {
border-bottom: 1px solid #d8d8d8;
padding-bottom: 4px;
text-transform: capitalize;
}
&__activities-container {
padding-top: 8px;
}
&__activity {
padding: 4px 0;
display: flex;
flex-direction: row;
align-items: center;
position: relative;
&::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 7px;
border-right: 1px solid #909090;
}
&:first-child::after {
height: 50%;
top: 50%;
}
&:last-child::after {
height: 50%;
}
&:first-child:last-child::after {
display: none;
}
}
&__activity-icon {
width: 15px;
height: 15px;
margin-right: 6px;
border-radius: 50%;
background: #909090;
flex: 0 0 auto;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
}
&__activity-text {
color: $dusty-gray;
font-size: .75rem;
cursor: pointer;
&:hover {
color: $black;
}
}
&__value {
display: inline;
font-weight: 500;
}
&__entry-container {
min-width: 0;
}
&__action-link {
font-size: .75rem;
cursor: pointer;
color: $curious-blue;
}
b {
font-weight: 500;
}
}
|