1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*兩者可分開使用、可同時使用*/

/*噗文滑動展開-垂直*/
.timeline-cnt .text_holder {
	/*滑動速度*/ transition:max-height 0.6s, min-height 0.6s;
}
.timeline-cnt .display .text_holder {
	/*最大高度*/ max-height:300px !important;
	/*超出最大高度時顯示滾輪軸*/ overflow:auto !important;
}

/*噗文滑動展開-水平*/
.timeline-cnt .plurk .text_holder { width:100%; min-width:unset; }
.timeline-cnt .plurk { width:auto; }
.timeline-cnt .plurk .plurk_cnt {
	/*滑動速度*/ transition:width 0.6s;
	/*平常寬度*/ width:320px;
}
.timeline-cnt .display .plurk_cnt {
	/*指上寬度*/ width:340px;
}
.timeline-cnt .plurk_box .plurk_cnt, #form_holder {
	/*點開寬度*/ width:460px !important;
}