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
/* 此段語法是為了讓捏捏噗寶在使用「Tokyono Sora 東京乃空 - Plurk UI」的情況下能順利出現,對原UI的部分轉場動畫和效果做了修改 */
/* 此段請貼在捏捏噗寶語法後面,沒有使用上述UI的使用者不用貼這段 */

._lc_ .dash-group-left{
overflow: visible;
transform: none;
transition: margin-right 1s;
margin-right: -230px;
backdrop-filter:none;
}

._lc_ .dash-group-left:hover{
transform: none;
margin-right: 0px;
transition: margin-right 1s;
}

._lc_ .dash-group-left .dash-segment-profile #dash-additional-info #about_me{
color: transparent;
transition: color 0s;
height: 0;
pointer-events: none;
}

._lc_ .dash-group-left .dash-segment-profile #dash-additional-info #about_me a, ._lc_ .dash-group-left .dash-segment-profile #dash-additional-info #private_plurk{
transition: opacity 0s;
opacity: 0;
pointer-events: none;
}


._lc_ .dash-group-left:hover .dash-segment-profile #dash-additional-info #about_me{
color: inherit;
transition: color 1s;
height: inherit;
pointer-events: auto;
}

._lc_ .dash-group-left:hover .dash-segment-profile #dash-additional-info #about_me a, .dash-group-left:hover  .dash-segment-profile #dash-additional-info #private_plurk{
transition: opacity 1s;
opacity: 1;
pointer-events: auto;
}