fix linter
Gitea Actions Demo / build_and_push (push) Successful in 1m8s
Details
Gitea Actions Demo / build_and_push (push) Successful in 1m8s
Details
This commit is contained in:
parent
2253d00caa
commit
d4b64886c9
|
|
@ -47,57 +47,17 @@
|
||||||
initWorkouts();
|
initWorkouts();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.image-container {
|
.image-container {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
background-position: 50% 50%;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: auto;
|
background-size: cover;
|
||||||
background-position: center center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.image-container img {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
@media (min-width: 1300px) {
|
|
||||||
.image-container::before,
|
|
||||||
.image-container::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
width: 24%;
|
|
||||||
height: 300px;
|
|
||||||
background-image: inherit;
|
|
||||||
background-size: inherit;
|
|
||||||
filter: blur(10px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container::before {
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container::after {
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container::before {
|
|
||||||
left: 0;
|
|
||||||
background-position: left center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container:after {
|
|
||||||
right: 0;
|
|
||||||
background-position: right center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.news-feed {
|
.news-feed {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -147,4 +107,3 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
@ -3,8 +3,13 @@
|
||||||
<article class="news-item">
|
<article class="news-item">
|
||||||
<div class="news-item-header" v-on:click="openWorkout(item.id)">
|
<div class="news-item-header" v-on:click="openWorkout(item.id)">
|
||||||
<h3>{{ item.name }}</h3>
|
<h3>{{ item.name }}</h3>
|
||||||
<!-- @vue-ignore -->
|
<VaIcon v-if="deleteItem"
|
||||||
<VaIcon v-if="deleteItem" name="delete_forever" size="22px" color="#bbc1c3" class="news-item-icon" @click="(event: any) => deleteItem?(item.id, event)"/>
|
name="delete_forever"
|
||||||
|
size="22px"
|
||||||
|
color="#bbc1c3"
|
||||||
|
class="news-item-icon"
|
||||||
|
@click="(event: any) => deleteItem ? deleteItem(item.id, event) : ''"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<ul class="metadata">
|
<ul class="metadata">
|
||||||
<li v-if="item.workouted_at"><span>Дата:</span> {{ formatTime(item.workouted_at) }}</li>
|
<li v-if="item.workouted_at"><span>Дата:</span> {{ formatTime(item.workouted_at) }}</li>
|
||||||
|
|
@ -58,9 +63,10 @@
|
||||||
@media (min-width: 1300px) {
|
@media (min-width: 1300px) {
|
||||||
.image-container::before,
|
.image-container::before,
|
||||||
.image-container::after {
|
.image-container::after {
|
||||||
|
top:0;
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 24%;
|
width: 25%;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
background-image: inherit;
|
background-image: inherit;
|
||||||
background-size: inherit;
|
background-size: inherit;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue