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
/*名字換行*/
.list .tr_cnt {
  display: flex;
  flex-direction: column;
}
/*留言靠右*/
.list .td_cnt {
  display: flex;
  justify-content: flex-end;
}
/*名字靠右*/
.list .plurk_cnt .td_qual {
  display:flex;
  justify-content: flex-end;
  width: auto;
}

/*把噗主調回來*/
.list .highlight_owner .td_cnt {
  display: block;
  justify-content: flex-end;
}
.list .highlight_owner .plurk_cnt .td_qual {
  display: block;
}

/*邊距調整*/
.list .plurk_cnt .td_cnt {
  padding: 0 5px;
}

/*右側無空白*/
.list .plurk_cnt .text_holder  {
  display: inline-block;
  padding:0.5em 1em;
  width:auto !important;
  min-width: 0;
}

/*更改回應最大寬度*/
.list .plurk_cnt .text_holder  {
  max-width: 66%;
}