Skip to content

Commit

Permalink
Merge pull request #143 from philippebeck/dev
Browse files Browse the repository at this point in the history
Release 2.0.16
  • Loading branch information
philippebeck authored Dec 29, 2023
2 parents ed964ce + 633a307 commit 144372e
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 19 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vesan",
"version": "2.0.15",
"version": "2.0.16",
"description": "UI with Vue-Elt, Servidio & Animadio",
"author": {
"name": "Philippe Beck",
Expand Down Expand Up @@ -50,7 +50,7 @@
"core-js": "^3.8.3",
"servidio": "^3.1.0",
"vue": "^3.3.9",
"vue-elt": "^2.3.1-alpha",
"vue-elt": "^2.3.2-alpha",
"vue-recaptcha": "^2.0.3",
"vue-router": "^4.1.6",
"vuex": "^4.0.2"
Expand Down
5 changes: 5 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@
max-width: 200px;
}

[id="image-set"] img,
[id="user-set"] img {
--ve-media-img-max-width: 200px;
}

/* TINYMCE EDITOR */
.tox {
margin: auto;
Expand Down
10 changes: 8 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@
<template #foot3>
<ListElt :dynamic="true" :items="val.FOOT3">
<template #items="slotProps">
<a :href="slotProps.item.href" :title="slotProps.item.title">
<a :href="slotProps.item.href"
:title="slotProps.item.title"
target="_blank"
rel="noopener noreferrer">
{{ slotProps.item.content }}
</a>
</template>
Expand All @@ -59,7 +62,10 @@
<template #foot>
<ListElt :dynamic="true" :items="val.FOOT">
<template #items="slotProps">
<a :href="slotProps.item.href" :title="slotProps.item.title">
<a :href="slotProps.item.href"
:title="slotProps.item.title"
target="_blank"
rel="noopener noreferrer">
<i :class="`fa-brands fa-${slotProps.item.fa} fa-lg fa-fw ${slotProps.item.color}`"></i>
</a>
</template>
Expand Down
6 changes: 3 additions & 3 deletions src/views/data/ArticleView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
class="btn-blue"
:title="val.TITLE_LIKE_LOGIN + article.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-regular fa-thumbs-up fa-lg fa-fw"></i>
<b v-if="article.likes" itemprop="contentRating">
{{ article.likes.length }}
</b>
Expand All @@ -123,7 +123,7 @@
class="btn-blue"
:title="val.TITLE_LIKE + article.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-regular fa-thumbs-up fa-lg fa-fw"></i>
<b v-if="article.likes" itemprop="contentRating">
{{ article.likes.length }}
</b>
Expand All @@ -137,7 +137,7 @@
class="btn-sky"
:title="val.TITLE_DISLIKE + article.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-solid fa-thumbs-up fa-lg fa-fw"></i>
<b v-if="article.likes" itemprop="contentRating">
{{ article.likes.length }}
</b>
Expand Down
6 changes: 3 additions & 3 deletions src/views/data/BlogView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
class="btn-sky-dark"
:title="val.TITLE_LIKE_LOGIN + slotProps.value.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-regular fa-thumbs-up fa-lg fa-fw"></i>
<b itemprop="contentRating">{{ slotProps.value.likes.length }}</b>
</template>
</BtnElt>
Expand All @@ -58,7 +58,7 @@
class="btn-sky"
:title="val.TITLE_LIKE + slotProps.value.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-regular fa-thumbs-up fa-lg fa-fw"></i>
<b itemprop="contentRating">{{ slotProps.value.likes.length }}</b>
</template>
</BtnElt>
Expand All @@ -70,7 +70,7 @@
class="btn-sky"
:title="val.TITLE_DISLIKE + slotProps.value.name">
<template #btn>
<i class="fa-regular fa-thumbs-up fa-lg"></i>
<i class="fa-solid fa-thumbs-up fa-lg fa-fw"></i>
<b itemprop="contentRating">{{ slotProps.value.likes.length }}</b>
</template>
</BtnElt>
Expand Down
8 changes: 6 additions & 2 deletions src/views/data/ImageView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
<SliderElt :slides="images">
<template #slide="slotProps">
<a :href="`/img/galleries/${slotProps.slide.name}`"
:title="val.TITLE_WATCH + slotProps.slide.name">
:title="val.TITLE_WATCH + slotProps.slide.name"
target="_blank"
rel="noopener noreferrer">

<MediaElt :src="`/img/galleries/${slotProps.slide.name}`"
:alt="val.MAP_OF + slotProps.slide.description"
Expand All @@ -44,7 +46,9 @@
class="grid-2sm-3md-4lg-5xl-6wd content-center">
<template #items="slotProps">
<a :href="`/img/galleries/${slotProps.item.name}`"
:title="val.TITLE_WATCH + slotProps.item.name">
:title="val.TITLE_WATCH + slotProps.item.name"
target="_blank"
rel="noopener noreferrer">

<MediaElt :id="`${slotProps.item.name.toLowerCase()}`"
:src="`/img/thumbnails/galleries/${slotProps.item.name}`"
Expand Down
4 changes: 3 additions & 1 deletion src/views/data/LinkView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
<BtnElt :href="`https://${slotProps.value.url}`"
class="btn-sky"
:content="slotProps.value.name"
:title="slotProps.value.url"/>
:title="slotProps.value.url"
target="_blank"
rel="noopener noreferrer"/>
</template>
</ListElt>

Expand Down

0 comments on commit 144372e

Please sign in to comment.