askbot-dragon 1.6.66-beta → 1.6.68-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
<template v-if="msg.content.type == 0">
|
|
142
142
|
<div v-for="(item, itemIndex) in msg.content.list" :key="itemIndex"
|
|
143
143
|
class="libang_list_cell_recognition">
|
|
144
|
-
<div class="libang_list_cell_left">
|
|
145
|
-
<div class="libang_source_name"
|
|
144
|
+
<div class="libang_list_cell_left" @click="lookAttach(item.url, item, $event)">
|
|
145
|
+
<div class="libang_source_name" >
|
|
146
146
|
<img class="libang_title_icon" height="18px" width="18px" :src="getIconSrc(item)" alt srcset />
|
|
147
147
|
<span class="libang_title_from">{{ item.from }}</span> -
|
|
148
148
|
<div v-show="docSource[item.source]" class="upload_source">
|
|
@@ -760,7 +760,6 @@ export default {
|
|
|
760
760
|
display: flex;
|
|
761
761
|
align-items: center;
|
|
762
762
|
justify-content: space-between;
|
|
763
|
-
color: #a9b3c6;
|
|
764
763
|
cursor: pointer;
|
|
765
764
|
|
|
766
765
|
img {
|
|
@@ -1011,7 +1010,6 @@ export default {
|
|
|
1011
1010
|
.libang_source_name {
|
|
1012
1011
|
display: flex;
|
|
1013
1012
|
align-items: center;
|
|
1014
|
-
color: #a9b3c6;
|
|
1015
1013
|
height: 20px;
|
|
1016
1014
|
margin-bottom: 2px;
|
|
1017
1015
|
img {
|
|
@@ -1032,6 +1030,7 @@ export default {
|
|
|
1032
1030
|
.libang_source_floder {
|
|
1033
1031
|
max-width: calc(226px - 24px);
|
|
1034
1032
|
margin-left: 24px;
|
|
1033
|
+
text-align: left;
|
|
1035
1034
|
color: #366aff;
|
|
1036
1035
|
overflow: hidden;
|
|
1037
1036
|
text-overflow: ellipsis;
|