|
@@ -4,9 +4,14 @@
|
|
<div v-if="text" class="container-fill">
|
|
<div v-if="text" class="container-fill">
|
|
<b-card-header header-tag="header">
|
|
<b-card-header header-tag="header">
|
|
<h4>
|
|
<h4>
|
|
- <span>{{ text.authors | list }},</span>
|
|
|
|
- <span>{{ text.title }},</span>
|
|
|
|
- <span>{{ text.edition }}</span>
|
|
|
|
|
|
+ <template v-if="text.type === 'Textref'">
|
|
|
|
+ <span>{{ text.authors | list }},</span>
|
|
|
|
+ <span>{{ text.title }},</span>
|
|
|
|
+ <span>{{ text.edition }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ <template v-else>
|
|
|
|
+ {{ text.title }}
|
|
|
|
+ </template>
|
|
</h4>
|
|
</h4>
|
|
|
|
|
|
<b-nav class="ml-auto flex-nowrap">
|
|
<b-nav class="ml-auto flex-nowrap">
|
|
@@ -20,7 +25,7 @@
|
|
</b-nav>
|
|
</b-nav>
|
|
</b-card-header>
|
|
</b-card-header>
|
|
|
|
|
|
- <b-card-body v-html="text.content" />
|
|
|
|
|
|
+ <b-card-body v-html="text.content" class="overflow-auto" />
|
|
|
|
|
|
<b-card-footer>
|
|
<b-card-footer>
|
|
<b-badge
|
|
<b-badge
|
|
@@ -36,7 +41,10 @@
|
|
>
|
|
>
|
|
Textes rebonds
|
|
Textes rebonds
|
|
</b-button>
|
|
</b-button>
|
|
- <b-popover :target="'bounces-' + text.id" triggers="click" placement="top">
|
|
|
|
|
|
+ <b-popover
|
|
|
|
+ v-if="text.bounces"
|
|
|
|
+ :target="'bounces-' + text.id" triggers="click" placement="top"
|
|
|
|
+ >
|
|
<div v-for="bounce in text.bounces" :key="bounce.id">
|
|
<div v-for="bounce in text.bounces" :key="bounce.id">
|
|
<h6>
|
|
<h6>
|
|
<span>{{ bounce.authors | list }},</span>
|
|
<span>{{ bounce.authors | list }},</span>
|
|
@@ -82,6 +90,10 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+article {
|
|
|
|
+ height: 100%;
|
|
|
|
+ // max-height: 100%;
|
|
|
|
+}
|
|
header {
|
|
header {
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|