diff --git a/src/assets/file.png b/src/assets/file.png new file mode 100644 index 0000000..2e1d1f9 Binary files /dev/null and b/src/assets/file.png differ diff --git a/src/components/thread/ThreadComponent.vue b/src/components/thread/ThreadComponent.vue index 1f942bd..53bfd93 100644 --- a/src/components/thread/ThreadComponent.vue +++ b/src/components/thread/ThreadComponent.vue @@ -23,10 +23,11 @@
+
- image +

{{file.name}}

@@ -40,7 +41,7 @@ v-on:keypress.enter="sendMessage" />
- +
@@ -49,7 +50,8 @@ @@ -328,6 +402,12 @@ export default { width: 120px; max-height: 180px; } +.custom-contents{ + max-width: 120px; /* 제목의 최대 너비를 설정 */ + overflow: hidden; /* 내용이 넘칠 경우 숨김 처리 */ + text-overflow: ellipsis !important; /* 넘치는 텍스트에 '...' 추가 (이거 적용안됨 이후 수정필요)*/ + white-space: nowrap; /* 텍스트 줄 바꿈 방지 */ +} .text-group { display: flex; flex-direction: row; @@ -335,10 +415,5 @@ export default { .form-control { width: 100%; } -.custom-contents{ - max-width: 120px; /* 제목의 최대 너비를 설정 */ - overflow: hidden; /* 내용이 넘칠 경우 숨김 처리 */ - text-overflow: ellipsis !important; /* 넘치는 텍스트에 '...' 추가 (이거 적용안됨 이후 수정필요)*/ - white-space: nowrap; /* 텍스트 줄 바꿈 방지 */ -} + diff --git a/src/components/thread/ThreadLineComponent.vue b/src/components/thread/ThreadLineComponent.vue index 89c9b51..3d8afa1 100644 --- a/src/components/thread/ThreadLineComponent.vue +++ b/src/components/thread/ThreadLineComponent.vue @@ -12,7 +12,14 @@
tag
{{content}}
-
{{files}}
+ +
+
+ image +

{{file.fileName}}

+
+
+
comment
@@ -57,6 +64,18 @@ } .files { +} +.image-group { + display: flex; + flex-direction: row; + width: 120px; + max-height: 180px; +} +.custom-contents{ + max-width: 120px; /* 제목의 최대 너비를 설정 */ + overflow: hidden; /* 내용이 넘칠 경우 숨김 처리 */ + text-overflow: ellipsis !important; /* 넘치는 텍스트에 '...' 추가 (이거 적용안됨 이후 수정필요)*/ + white-space: nowrap; /* 텍스트 줄 바꿈 방지 */ } .comment {