1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*無樣式,其他人留言靠右*/

/******要改的地方*******/
.list .tr_cnt:not(:has(.name[data-uid="99999"][style="color:#0a9c17"])):not(:has(.name[data-uid="123456789"])) .td_cnt { /*其他人留言靠右,填入自己的uid*/
  display: flex;
  justify-content: flex-end;
}
.list .tr_cnt:not(:has(.name[data-uid="99999"][style="color:#0a9c17"])):not(:has(.name[data-uid="123456789"])) .td_qual { /*其他人名字靠右,填入自己的uid*/
  display:flex;
  justify-content: flex-end;
  width: auto;
}
.list .plurk_cnt .text_holder {
  max-width: 66%; /*回應最大寬度*/
}
/************************/

.list .plurk_cnt .text_holder  { /*右側無空白*/
  width:auto !important;
  min-width: 0;
}
.list .tr_cnt > td { /*名字換行*/
  display: block;
}