Fix editor related issues

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-10-10 11:05:53 +02:00
parent 1f9298e577
commit eca8b9ec7c
5 changed files with 38 additions and 10 deletions

View File

@@ -16,7 +16,7 @@
<picture-upload v-model="pictureFile" />
<b-field :label="$t('Title')" :type="checkTitleLength[0]" :message="checkTitleLength[1]">
<b-input aria-required="true" required v-model="event.title" />
<b-input size="is-large" aria-required="true" required v-model="event.title" />
</b-field>
<tag-input v-model="event.tags" :data="tags" path="title" />

View File

@@ -137,7 +137,7 @@
{{ $t("The event organizer didn't add any description.") }}
</p>
<div class="columns" v-else>
<div class="column is-half" v-html="event.description">
<div class="column is-half description-content" v-html="event.description">
</div>
</div>
</div>
@@ -660,14 +660,38 @@ export default class Event extends EventMixin {
border-top: solid 1px #111;
border-bottom: solid 1px #111;
p {
margin: 10px auto;
.description-content {
/deep/ h1 {
font-size: 2rem;
}
a {
display: inline-block;
padding: 0.3rem;
background: $secondary;
color: #111;
/deep/ h2 {
font-size: 1.5rem;
}
/deep/ h3 {
font-size: 1.25rem;
}
/deep/ ul {
list-style-type: disc;
}
/deep/ blockquote {
border-left: .2em solid #333;
display: block;
padding-left: 1em;
}
/deep/ p {
margin: 10px auto;
a {
display: inline-block;
padding: 0.3rem;
background: $secondary;
color: #111;
}
}
}
}