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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/******************************
 * 無人回應的空噗:兩隻陪你聊 v1.2
 * 註:把::after的部份刪掉後,就會變成單隻款式
 ******************************/
.plurk_box > .response_box .list-container .empty{
    visibility: hidden;
}
/* 頭像及對話框預設,可於此處自行調整 */
.plurk_box > .response_box .list-container .empty::before, .plurk_box > .response_box .list-container .empty::after {
    visibility: visible;
    position: relative;
    display: block;
    width: 320px;             /* 對話框寬度 */
    height: 50px;             /* 對話框高度。如果句子太長無法顯示,可修改高度或改為「auto」 */
    min-height: 50px;
    text-align: left;
    color: black;             /* 對話框文字顏色 */
    background-color: white;  /* 對話框背景顏色 */
    background-repeat: no-repeat;
    padding: 10px;
    border: 2px solid #000;   /* 對話框的框線 */
    border-radius: 10px;      /* 對話框的圓角 */
    white-space: normal;
    word-spacing: normal;     /* 如果句子太長,需要手動斷行,請改為「100vw」 */
    margin: auto;
}
/* 〔勿刪改〕 刪噗後無法載入回應的情況下,可以顯示系統原本的句子「唔,好像有點怪怪的」 */
.plurk_box > .response_box .list-container .empty[style]{
    visibility: visible;
}
.plurk_box > .response_box .list-container .empty[style]::before, .plurk_box > .response_box .list-container .empty[style]::after {
    display: none;
}

/* 頭像及對話:一般狀態 */
.plurk_box > .response_box .list-container .empty::before {
    padding-left: 60px;
    content: "這個噗居然沒有人留言……";
    background-image: url('https://emos.plurk.com/42bb12ed8c29a1dffcc00e6ddcef0ce6_w48_h48.png');
}
.plurk_box > .response_box .list-container .empty::after{
    padding-left: 60px;
    content: "這裡只有狐喔!";
    background-image: url('https://emos.plurk.com/b4ceb1b723f5a5856354b9a1f94766c4_w48_h48.png');
}

/* 頭像及對話:滑至噗內時(不需要可以刪掉) */
.plurk_box:hover > .response_box .list-container .empty::before {
    content: "等了又等,還是沒有人啊……";
    background-image: url('https://emos.plurk.com/e0bb15d07ad875412bf90a9e0f24ca51_w48_h48.png');
}
.plurk_box:hover > .response_box .list-container .empty::after {
    content: '不用等下去吧。';
    background-image: url('https://emos.plurk.com/e58a0c4bd9bdd84946ef4544364411a2_w48_h48.png');
}

/* 頭像及對話:滑至頭像及對話時(不需要可以刪掉) */
#form_holder.plurk_box > .response_box .list-container:hover .empty::before {
    content: "等等,你想做什麼……";
    background-image: url('https://emos.plurk.com/68bc9c642438f62b1baf91be138c65ac_w48_h48.png');
}
#form_holder.plurk_box > .response_box .list-container:hover .empty::after {
    content: "狐警告你!不要過來!";
    background-image: url('https://emos.plurk.com/aa9ae53d9074382c2a9e880068e87572_w48_h48.png');
}
/* 滑至頭像及對話時的滑鼠游標,可改為圖片(不需要可以刪掉) */
#form_holder.plurk_box > .response_box .list-container:hover .empty{
    cursor: grab;
}

/* 頭像及對話:點擊頭像及對話時(不需要可以刪掉) */
.plurk_box > .response_box .list-container:active .empty::before {
    content: "嗷嗷!" !important;
    background-image: url('https://emos.plurk.com/35d2b0a574701708b9caa183ae496fd9_w48_h48.png') !important;
}
.plurk_box > .response_box .list-container:active .empty::after {
    content: "嗷嗷!" !important;
    background-image: url('https://emos.plurk.com/dcbce04477006672e054914c03fdbe0d_w48_h48.png') !important;
}
/* 點擊頭像及對話時的滑鼠游標,可改為圖片(不需要可以刪掉) */
#form_holder.plurk_box > .response_box .list-container:active .empty{
    cursor: grabbing !important;
}