Newer
Older
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
@import "/imports/ui/components/modal/simple/styles";
.title {
left: var(--title-position-left);
right: auto;
color: var(--color-gray-dark);
font-weight: bold;
font-size: var(--font-size-large);
text-align: center;
[dir="rtl"] & {
left: auto;
right: var(--title-position-left);
}
}
.container {
margin: 0 var(--modal-margin) var(--lg-padding-x);
}
.modal {
@extend .modal;
padding: var(--jumbo-padding-y);
}
.overlay {
@extend .overlay;
}
.description {
text-align: center;
color: var(--color-gray);
margin-bottom: var(--jumbo-padding-y)
}
.label {
color: var(--color-gray-label);
font-size: var(--font-size-small);
margin-bottom: var(--lg-padding-y);
}
.header {
margin: 0;
padding: 0;
border: none;
line-height: var(--title-position-left);
margin-bottom: var(--lg-padding-y);
}
.content {
display: flex;
flex-direction: column;
align-items: center;
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
92
93
94
95
96
97
98
99
100
101
102
padding: 0;
}
.wrapper {
display: block;
width: 100%;
max-height: 24rem;
}
.item {
display: flex;
width: 100%;
height: 4rem;
}
.even {
background-color: var(--color-off-white);
}
.left {
display: flex;
width: 100%;
height: 100%;
.avatar {
display: flex;
width: 4rem;
height: 100%;
justify-content: center;
align-items: center;
.icon {
min-width: 2.25rem;
height: 2.25rem;
}
}
.name {
display: grid;
width: 100%;
height: 100%;
align-items: center;
.text {
padding-left: .5rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.offline {
font-style: italic;
}
}
.status {
display: flex;
width: 6rem;
height: 100%;
justify-content: center;
align-items: center;
}
.right {
display: flex;
width: 5rem;
height: 100%;
.time {
display: flex;
align-items: center;
width: 100%;
height: 100%;
}