askbot-dragon 1.6.36-beta → 1.6.37-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
|
@@ -61,7 +61,10 @@
|
|
|
61
61
|
</div>-->
|
|
62
62
|
<div class="alc-source-name" @click="lookAttach(item.url, item, $event)">
|
|
63
63
|
<img class="alc-title-icon" height="18px" width="18px" :src="item.src" alt srcset />
|
|
64
|
-
<span class="alc-title-from">{{ item.from }}</span
|
|
64
|
+
<span class="alc-title-from">{{ item.from }}</span> -
|
|
65
|
+
<div v-show="docSource[item.source]" class="upload-source">
|
|
66
|
+
{{docSource[item.source]}}
|
|
67
|
+
</div>
|
|
65
68
|
<i class="iconfont guoran-right"></i>
|
|
66
69
|
</div>
|
|
67
70
|
<div class="alc-content" v-if="false">
|
|
@@ -646,12 +649,15 @@ export default {
|
|
|
646
649
|
margin: 0 3px 0 5px;
|
|
647
650
|
}
|
|
648
651
|
.alc-title-from {
|
|
649
|
-
margin-right: 5px;
|
|
652
|
+
// margin-right: 5px;
|
|
650
653
|
max-width: 240px;
|
|
651
654
|
overflow: hidden;
|
|
652
655
|
text-overflow: ellipsis;
|
|
653
656
|
white-space: nowrap;
|
|
654
657
|
}
|
|
658
|
+
.upload-source {
|
|
659
|
+
margin-right: 5px;
|
|
660
|
+
}
|
|
655
661
|
i {
|
|
656
662
|
font-size: 12px;
|
|
657
663
|
}
|