blob: 3824ec44a3753676df82b6e1be2c840639e15365 (
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
|
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------
.o_ThreadIcon {
display: flex;
width: 13px;
justify-content: center;
flex: 0 0 auto;
}
.o_ThreadIcon_typing {
flex: 1 1 auto;
}
// ------------------------------------------------------------------
// Style
// ------------------------------------------------------------------
.o_ThreadIcon_away {
color: theme-color('warning');
}
.o_ThreadIcon_online {
color: $o-enterprise-primary-color;
}
|