퍼블리싱 수정 - 커뮤니티 상세 페이지: 본문 size, resize 변경

dev_bert
정이솔 3 years ago
parent 5b9583e8d2
commit 65189dfa36

@ -131,7 +131,7 @@
<!-- //swiper_wrap --> <!-- //swiper_wrap -->
<div class="vote_cont" > <div class="vote_cont" >
<textarea class="b_content" cols='105' readOnly style="border: none;padding-left: 30px;overflow:hidden;">${model ['rm']['content']!}</textarea> <textarea class="b_content" readOnly>${model ['rm']['content']!}</textarea>
</div> </div>
</div> </div>
@ -812,6 +812,12 @@
$(".community_write_review").hide(); $(".community_write_review").hide();
</#if> </#if>
var contentHeight = $(".b_content");
if (contentHeight) {
contentHeight.each(function(){
$(this).height(this.scrollHeight);
});
}
}); });

@ -16589,6 +16589,13 @@ main.sona_cont_measurement {
margin-left: 10px; margin-left: 10px;
} }
.community_view01 .vote_cont .b_content {
width: 100%;
resize: none;
border: none;
overflow: hidden;
}
/* 13-19.커뮤니티-투표-게시글등록 */ /* 13-19.커뮤니티-투표-게시글등록 */
.community_write_vote { .community_write_vote {
margin-top: 10px; margin-top: 10px;

Loading…
Cancel
Save