blob: c7bd00f3c39fa500da106546f56637805bdf27c4 [file] [log] [blame]
avm99963e51444e2020-08-31 14:50:06 +02001ec-user-link.name > *, .thread-message-header__name > span:nth-child(3) > * {
avm99963129fb502020-08-28 05:18:53 +02002 vertical-align: middle;
3}
4
5.profile-indicator {
avm9996375d37442020-08-31 19:56:32 +02006 font-size: 14px;
avm99963129fb502020-08-28 05:18:53 +02007 margin-left: 4px;
8}
9
10.profile-indicator a {
11 text-decoration: none!important;
12}
13
14@keyframes loading-profile-indicator {
15 from {
16 opacity: 0.25;
17 }
18
19 to {
20 opacity: 1;
21 }
22}
23
24.profile-indicator.profile-indicator--loading a {
25 color: #6f6f6f;
26
27 animation-duration: 0.75s;
28 animation-name: loading-profile-indicator;
29 animation-iteration-count: infinite;
30 animation-direction: alternate;
31}
32
33.profile-indicator.profile-indicator--first-post a {
avm99963e1752a12020-08-31 20:00:34 +020034 color: #4285f4;
avm99963129fb502020-08-28 05:18:53 +020035}
36
37.profile-indicator.profile-indicator--other-posts-read a {
38 color: #FF8F00;
39}
40
41.profile-indicator.profile-indicator--other-posts-unread a {
42 color: #C62828;
43}
44
45.profile-indicator a {
46 opacity: 1;
47 transition: opacity 1s, color 1s;
48}