blob: 13de6566ff86d725cf69536934e68fa53ea20e0f (
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
|
.roomListItem {
background-color: #ffffff11;
border-radius: 25px;
margin: 8px;
width: fit-Content;
}
.roomListItem.dangerousRoomVersion {
border: red 4px solid;
}
.roomListItem.oldRoomVersion {
border: #FF0 1px solid;
}
.avatar32 {
width: 32px;
height: 32px;
border-radius: 50%;
}
.avatar32.vcenter {
vertical-align: baseline;
}
.highlightChange {
background-color: red;
border-color: red;
border-width: 3px;
border-style: dashed;
}
.inlineBlock {
display: inline-block;
}
.centerVertical {
vertical-align: middle;
padding-right: 8px;
}
.noLeftPadding {
padding-left: 0px;
}
.border75 {
border-radius: 75px;
}
|