Feature: Send attachments to widget user (#621)

This commit is contained in:
Nithin David Thomas 2020-03-22 15:54:36 +05:30 committed by GitHub
parent fe70843fae
commit f7e5f1fabf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 317 additions and 92 deletions

View file

@ -0,0 +1,50 @@
<template>
<a :href="url" target="_blank" class="image message-text__wrap">
<img :src="url" alt="Picture message" />
<span class="time">{{ readableTime }}</span>
</a>
</template>
<script>
export default {
props: ['url', 'readableTime'],
};
</script>
<style lang="scss" scoped>
@import '~widget/assets/scss/variables.scss';
.image {
max-width: 100%;
position: relative;
display: block;
img {
width: 100%;
}
.time {
font-size: $font-size-small;
bottom: $space-smaller;
color: $color-white;
position: absolute;
right: $space-small;
white-space: nowrap;
}
&::before {
$color-black: #000;
background-image: linear-gradient(
-180deg,
transparent 3%,
$color-black 70%
);
bottom: 0;
content: '';
height: 20%;
left: 0;
opacity: 0.8;
position: absolute;
width: 100%;
}
}
</style>