forked from AkkomaGang/akkoma-fe
add media description into media modal
This commit is contained in:
parent
f5823a96e9
commit
34d265467a
2 changed files with 76 additions and 53 deletions
|
@ -29,6 +29,9 @@ const MediaModal = {
|
|||
media () {
|
||||
return this.$store.state.mediaViewer.media
|
||||
},
|
||||
description () {
|
||||
return this.currentMedia.description
|
||||
},
|
||||
currentIndex () {
|
||||
return this.$store.state.mediaViewer.currentIndex
|
||||
},
|
||||
|
|
|
@ -61,6 +61,12 @@
|
|||
icon="chevron-right"
|
||||
/>
|
||||
</button>
|
||||
<span
|
||||
v-if="description"
|
||||
class="description"
|
||||
>
|
||||
{{ description }}
|
||||
</span>
|
||||
</Modal>
|
||||
</template>
|
||||
|
||||
|
@ -69,6 +75,7 @@
|
|||
<style lang="scss">
|
||||
.modal-view.media-modal-view {
|
||||
z-index: 1001;
|
||||
flex-direction: column;
|
||||
|
||||
.modal-view-button-arrow {
|
||||
opacity: 0.75;
|
||||
|
@ -84,6 +91,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.media-modal-view {
|
||||
@keyframes media-fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
|
@ -93,6 +101,17 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* Hardcoded since background is also hardcoded */
|
||||
.description {
|
||||
color: white;
|
||||
margin-top: 1em;
|
||||
text-shadow: 0 0 10px black, 0 0 10px black;
|
||||
max-width: 500px;
|
||||
max-height: 9.5em;
|
||||
overflow-y: auto;
|
||||
padding: 0 2em;
|
||||
}
|
||||
|
||||
.modal-image {
|
||||
max-width: 90%;
|
||||
max-height: 90%;
|
||||
|
@ -144,4 +163,5 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue