2024-05-31 15:31:05 +07:00
|
|
|
<template>
|
2024-06-03 12:27:22 +07:00
|
|
|
<div class="mt-4">
|
|
|
|
|
<div class="input_comment width_common mb-2">
|
|
|
|
|
<div class="box-area-input width_common">
|
|
|
|
|
<textarea id="txtComment" class="block_input"
|
|
|
|
|
placeholder="* Bình luận của bạn sẽ được biên tập trước khi đăng. Xin vui lòng gõ tiếng Việt có dấu"></textarea>
|
2024-05-31 15:31:05 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-06-03 12:27:22 +07:00
|
|
|
<div class="mb-2">
|
|
|
|
|
<button type="button" class="mr-2 p-2 bg-blue-500 text-[#fff] rounded text-xs">
|
|
|
|
|
Gửi bình luận
|
|
|
|
|
<Icon name="ri:send-plane-2-fill"></Icon>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.input_comment {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-top: 1px solid #dedede;
|
|
|
|
|
border-right: 1px solid #dedede;
|
|
|
|
|
border-bottom: 1px solid #dedede;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.box-area-input {
|
|
|
|
|
background: #f7f7f7;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 10px 0 10px 0;
|
|
|
|
|
border-left: 2px solid rgba(59, 130, 246, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.input_comment textarea.block_input {
|
|
|
|
|
height: 30px;
|
|
|
|
|
-webkit-transition-duration: 200ms;
|
|
|
|
|
transition-duration: 200ms;
|
|
|
|
|
-webkit-transition-property: all;
|
|
|
|
|
transition-property: all;
|
|
|
|
|
-webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
|
|
|
|
|
transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input_comment textarea.block_input {
|
|
|
|
|
height: 76px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
resize: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-area-input .block_input {
|
|
|
|
|
background: #f7f7f7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input_comment textarea {
|
|
|
|
|
font: 400 16px/150% arial;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 58px;
|
|
|
|
|
color: #4f4f4f !important;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 5px 37px 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"],
|
|
|
|
|
input[type="password"],
|
|
|
|
|
input[type="email"],
|
|
|
|
|
input[type="tel"],
|
|
|
|
|
textarea,
|
|
|
|
|
select {
|
|
|
|
|
background: #fff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input,
|
|
|
|
|
textarea {
|
|
|
|
|
font-family: arial;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
</style>
|