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
84
85
86
87
/******************************
 * 無人回應的空噗:名畫陪你聊 v1.2
 ******************************/
.plurk_box > .response_box .list-container .empty{
    visibility: hidden;
}
/* 頭像預設,頭像部份可於此處自行調整 */
.plurk_box > .response_box .list-container .empty::before {
    visibility: visible;
    content: ' ';             /* 預設為半形空白,可輸入簡短文字作為頭像名稱,高度需要調整 */
    color: black;
    position: absolute;
    left: 15px;
    top: 45px;
    width: 50px;              /* 頭像寬度*/
    height: 50px;             /* 頭像高度 */
    display: flex;
    align-items: flex-end;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 2px 2px;
}
/* 對話框預設,對話框部份可於此處自行調整 */
.plurk_box > .response_box .list-container .empty::after{
    visibility: visible;
    position: absolute;
    left: 70px;
    top: 45px;
    width: 350px;             /* 對話框寬度 */
    height: 50px;             /* 對話框高度。如果句子太長無法顯示,可修改高度或改為「auto」 */
    min-height: 50px;
    text-align: left;
    background-color: white;  /* 對話框背景顏色 */
    color: black;             /* 對話框文字顏色 */
    padding: 10px;
    border: 2px solid #000;   /* 對話框的框線 */
    border-radius: 10px;      /* 對話框的圓角 */
    white-space: normal;
    word-spacing: normal;     /* 如果句子太長,需要手動斷行,請改為「100vw」 */
}
/* 〔勿刪改〕 刪噗後無法載入回應的情況下,可以顯示系統原本的句子「唔,好像有點怪怪的」 */
.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 {
    background-image: url('https://emos.plurk.com/9ed32b91a672495370dc242ea0259ae1_w48_h48.jpeg');
}
.plurk_box > .response_box .list-container .empty::after{
    content: '可憐吶,你的噗一個留言都沒有……';
}

/* 頭像及對話:滑至噗內時(不需要可以刪掉) */
.plurk_box:hover > .response_box .list-container .empty::before {
    background-image: url('https://emos.plurk.com/3e5320bdb7a69df307ebf06fab9b5a9a_w48_h48.jpeg');
}
.plurk_box:hover > .response_box .list-container .empty::after {
    content: '傻瓜,再等下去也沒用,根本沒有朋友理你啊!';
}

/* 頭像及對話:滑至頭像及對話時(不需要可以刪掉) */
#form_holder.plurk_box > .response_box .list-container:hover .empty::before {
    background-image: url('https://emos.plurk.com/373dd6e269a99f90ce3b7fe582e50010_w48_h48.jpeg');
}
#form_holder.plurk_box > .response_box .list-container:hover .empty::after {
    content: '等等,你到底想幹什麼……不要過來……';
}
/* 滑至頭像及對話時的滑鼠游標,可改為圖片(不需要可以刪掉) */
#form_holder.plurk_box > .response_box .list-container:hover .empty {
    cursor: cell;
}

/* 頭像及對話:點擊頭像及對話時(不需要可以刪掉) */
.plurk_box > .response_box .list-container:active .empty::before {
    background-image: url('https://emos.plurk.com/cf9f465ae7c9529aa0ed1858badd6935_w48_h48.jpeg') !important;
}
.plurk_box > .response_box .list-container:active .empty::after {
    content: '噢噢噢噢噢噢──!好痛哦!救命哦!!!' !important;
}
/* 點擊頭像及對話時的滑鼠游標,可改為圖片(不需要可以刪掉) */
.plurk_box > .response_box .list-container:active .empty {
    cursor: crosshair !important;
}