2018-10-18 16:18:33 -05:00
|
|
|
<template>
|
|
|
|
<x-column>
|
|
|
|
<span slot="header">
|
2018-11-05 10:40:11 -06:00
|
|
|
<fa icon="user"/><span>{{ title }}</span>
|
2018-10-18 16:18:33 -05:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<div class="zubukjlciycdsyynicqrnlsmdwmymzqu" v-if="user">
|
2018-10-20 10:18:01 -05:00
|
|
|
<div class="is-remote" v-if="user.host != null">
|
|
|
|
<details>
|
2018-11-08 12:44:35 -06:00
|
|
|
<summary><fa icon="exclamation-triangle"/> {{ $t('@.is-remote-user') }}</summary>
|
|
|
|
<a :href="user.url || user.uri" target="_blank">{{ $t('@.view-on-remote') }}</a>
|
2018-10-20 10:18:01 -05:00
|
|
|
</details>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
<header :style="bannerStyle">
|
|
|
|
<div>
|
2018-11-05 10:40:11 -06:00
|
|
|
<button class="menu" @click="menu" ref="menu"><fa icon="ellipsis-h"/></button>
|
2018-11-13 01:19:46 -06:00
|
|
|
<mk-follow-button v-if="$store.getters.isSignedIn && user.id != $store.state.i.id" :user="user" class="follow" mini/>
|
2018-10-18 16:18:33 -05:00
|
|
|
<mk-avatar class="avatar" :user="user" :disable-preview="true"/>
|
2018-12-05 19:02:04 -06:00
|
|
|
<span class="name">
|
2018-12-05 20:18:13 -06:00
|
|
|
<mk-user-name :user="user"/>
|
2018-12-05 19:02:04 -06:00
|
|
|
</span>
|
2018-10-18 16:18:33 -05:00
|
|
|
<span class="acct">@{{ user | acct }}</span>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="info">
|
|
|
|
<div class="description">
|
2018-12-05 19:02:04 -06:00
|
|
|
<misskey-flavored-markdown v-if="user.description" :text="user.description" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
2018-12-11 05:18:12 -06:00
|
|
|
<div class="fields" v-if="user.fields">
|
|
|
|
<dl class="field" v-for="(field, i) in user.fields" :key="i">
|
|
|
|
<dt class="name">{{ field.name }}</dt>
|
|
|
|
<dd class="value">
|
|
|
|
<misskey-flavored-markdown :text="field.value" :author="user" :i="$store.state.i" :custom-emojis="user.emojis"/>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
</div>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div class="counts">
|
|
|
|
<div>
|
|
|
|
<b>{{ user.notesCount | number }}</b>
|
2018-11-08 12:44:35 -06:00
|
|
|
<span>{{ $t('posts') }}</span>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<b>{{ user.followingCount | number }}</b>
|
2018-11-08 12:44:35 -06:00
|
|
|
<span>{{ $t('following') }}</span>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<b>{{ user.followersCount | number }}</b>
|
2018-11-08 12:44:35 -06:00
|
|
|
<span>{{ $t('followers') }}</span>
|
2018-10-22 22:32:24 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
|
|
|
<div class="pinned" v-if="user.pinnedNotes && user.pinnedNotes.length > 0">
|
2018-11-08 12:44:35 -06:00
|
|
|
<p class="caption" @click="toggleShowPinned"><fa icon="thumbtack"/> {{ $t('pinned-notes') }}</p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<span class="angle" v-if="showPinned"><fa icon="angle-up"/></span>
|
|
|
|
<span class="angle" v-else><fa icon="angle-down"/></span>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div class="notes" v-show="showPinned">
|
2018-10-18 16:18:33 -05:00
|
|
|
<x-note v-for="n in user.pinnedNotes" :key="n.id" :note="n" :mini="true"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="images" v-if="images.length > 0">
|
2018-11-08 12:44:35 -06:00
|
|
|
<p class="caption" @click="toggleShowImages"><fa :icon="['far', 'images']"/> {{ $t('images') }}</p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<span class="angle" v-if="showImages"><fa icon="angle-up"/></span>
|
|
|
|
<span class="angle" v-else><fa icon="angle-down"/></span>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div v-show="showImages">
|
|
|
|
<router-link v-for="image in images"
|
|
|
|
:style="`background-image: url(${image.thumbnailUrl})`"
|
|
|
|
:key="`${image.id}:${image._note.id}`"
|
|
|
|
:to="image._note | notePage"
|
|
|
|
:title="`${image.name}\n${(new Date(image.createdAt)).toLocaleString()}`"
|
|
|
|
></router-link>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
2018-10-22 08:00:32 -05:00
|
|
|
<div class="activity">
|
2018-11-08 12:44:35 -06:00
|
|
|
<p class="caption" @click="toggleShowActivity"><fa :icon="['far', 'chart-bar']"/> {{ $t('activity') }}</p>
|
2018-11-05 10:40:11 -06:00
|
|
|
<span class="angle" v-if="showActivity"><fa icon="angle-up"/></span>
|
|
|
|
<span class="angle" v-else><fa icon="angle-down"/></span>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div v-show="showActivity">
|
|
|
|
<div ref="chart"></div>
|
|
|
|
</div>
|
2018-10-22 08:00:32 -05:00
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
<div class="tl">
|
2018-11-08 12:44:35 -06:00
|
|
|
<p class="caption"><fa :icon="['far', 'comment-alt']"/> {{ $t('timeline') }}</p>
|
2018-10-22 22:32:24 -05:00
|
|
|
<div>
|
|
|
|
<x-notes ref="timeline" :more="existMore ? fetchMoreNotes : null"/>
|
|
|
|
</div>
|
2018-10-18 16:18:33 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../../i18n';
|
2018-10-18 16:18:33 -05:00
|
|
|
import parseAcct from '../../../../../../misc/acct/parse';
|
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XNotes from './deck.notes.vue';
|
|
|
|
import XNote from '../../components/note.vue';
|
2018-10-20 01:41:27 -05:00
|
|
|
import Menu from '../../../../common/views/components/menu.vue';
|
|
|
|
import MkUserListsWindow from '../../components/user-lists-window.vue';
|
2018-10-18 19:20:11 -05:00
|
|
|
import { concat } from '../../../../../../prelude/array';
|
2018-10-22 16:47:06 -05:00
|
|
|
import * as ApexCharts from 'apexcharts';
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
const fetchLimit = 10;
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('deck/deck.user-column.vue'),
|
2018-10-18 16:18:33 -05:00
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XNotes,
|
|
|
|
XNote
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
acct: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
user: null,
|
|
|
|
fetching: true,
|
|
|
|
existMore: false,
|
|
|
|
moreFetching: false,
|
|
|
|
withFiles: false,
|
2018-10-22 22:32:24 -05:00
|
|
|
images: [],
|
|
|
|
showPinned: true,
|
|
|
|
showImages: true,
|
|
|
|
showActivity: true
|
2018-10-18 16:18:33 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
title(): string {
|
|
|
|
return this.user ? Vue.filter('userName')(this.user) : '';
|
|
|
|
},
|
|
|
|
|
|
|
|
bannerStyle(): any {
|
|
|
|
if (this.user == null) return {};
|
|
|
|
if (this.user.bannerUrl == null) return {};
|
|
|
|
return {
|
|
|
|
backgroundColor: this.user.bannerColor && this.user.bannerColor.length == 3 ? `rgb(${ this.user.bannerColor.join(',') })` : null,
|
|
|
|
backgroundImage: `url(${ this.user.bannerUrl })`
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('users/show', parseAcct(this.acct)).then(user => {
|
2018-10-18 16:18:33 -05:00
|
|
|
this.user = user;
|
|
|
|
this.fetching = false;
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
(this.$refs.timeline as any).init(() => this.initTl());
|
|
|
|
});
|
|
|
|
|
2018-10-18 19:20:11 -05:00
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/gif'
|
|
|
|
];
|
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('users/notes', {
|
2018-10-18 16:18:33 -05:00
|
|
|
userId: this.user.id,
|
2018-10-18 19:20:11 -05:00
|
|
|
fileType: image,
|
2018-11-12 10:17:59 -06:00
|
|
|
limit: 9,
|
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365
|
2018-10-18 16:18:33 -05:00
|
|
|
}).then(notes => {
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const note of notes) {
|
|
|
|
for (const file of note.files) {
|
2018-10-18 16:18:33 -05:00
|
|
|
file._note = note;
|
2018-12-11 05:36:55 -06:00
|
|
|
}
|
|
|
|
}
|
2018-10-18 19:20:11 -05:00
|
|
|
const files = concat(notes.map((n: any): any[] => n.files));
|
2018-10-20 09:43:42 -05:00
|
|
|
this.images = files.filter(f => image.includes(f.type)).slice(0, 9);
|
2018-10-18 16:18:33 -05:00
|
|
|
});
|
2018-10-22 08:00:32 -05:00
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('charts/user/notes', {
|
2018-10-22 08:00:32 -05:00
|
|
|
userId: this.user.id,
|
|
|
|
span: 'day',
|
2018-10-22 16:49:23 -05:00
|
|
|
limit: 21
|
2018-10-22 08:00:32 -05:00
|
|
|
}).then(stats => {
|
2018-10-22 16:47:06 -05:00
|
|
|
const normal = [];
|
|
|
|
const reply = [];
|
|
|
|
const renote = [];
|
2018-10-22 08:00:32 -05:00
|
|
|
|
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
|
2018-10-22 16:49:23 -05:00
|
|
|
for (let i = 0; i < 21; i++) {
|
2018-10-22 16:47:06 -05:00
|
|
|
const x = new Date(y, m, d - i);
|
|
|
|
normal.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.normal[i]
|
|
|
|
]);
|
|
|
|
reply.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.reply[i]
|
|
|
|
]);
|
|
|
|
renote.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.renote[i]
|
|
|
|
]);
|
2018-10-22 08:00:32 -05:00
|
|
|
}
|
|
|
|
|
2018-10-22 16:47:06 -05:00
|
|
|
const chart = new ApexCharts(this.$refs.chart, {
|
|
|
|
chart: {
|
|
|
|
type: 'bar',
|
|
|
|
stacked: true,
|
2018-10-22 19:39:27 -05:00
|
|
|
height: 100,
|
2018-10-22 16:47:06 -05:00
|
|
|
sparkline: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
},
|
2018-10-22 19:39:27 -05:00
|
|
|
plotOptions: {
|
|
|
|
bar: {
|
|
|
|
columnWidth: '90%',
|
|
|
|
endingShape: 'rounded'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
clipMarkers: false,
|
|
|
|
padding: {
|
|
|
|
top: 16,
|
|
|
|
right: 16,
|
|
|
|
bottom: 16,
|
|
|
|
left: 16
|
|
|
|
}
|
|
|
|
},
|
2018-10-22 16:47:06 -05:00
|
|
|
tooltip: {
|
|
|
|
shared: true,
|
|
|
|
intersect: false
|
|
|
|
},
|
|
|
|
series: [{
|
|
|
|
name: 'Normal',
|
|
|
|
data: normal
|
|
|
|
}, {
|
|
|
|
name: 'Reply',
|
|
|
|
data: reply
|
|
|
|
}, {
|
|
|
|
name: 'Renote',
|
|
|
|
data: renote
|
|
|
|
}],
|
|
|
|
xaxis: {
|
2018-10-22 19:39:27 -05:00
|
|
|
type: 'datetime',
|
|
|
|
crosshairs: {
|
|
|
|
width: 1,
|
|
|
|
opacity: 1
|
|
|
|
}
|
2018-10-22 16:47:06 -05:00
|
|
|
}
|
2018-10-22 08:00:32 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
chart.render();
|
|
|
|
});
|
2018-10-18 16:18:33 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
initTl() {
|
|
|
|
return new Promise((res, rej) => {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('users/notes', {
|
2018-10-18 16:18:33 -05:00
|
|
|
userId: this.user.id,
|
|
|
|
limit: fetchLimit + 1,
|
2018-11-12 10:17:59 -06:00
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365,
|
2018-10-18 16:18:33 -05:00
|
|
|
withFiles: this.withFiles,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
this.existMore = true;
|
|
|
|
}
|
|
|
|
res(notes);
|
|
|
|
}, rej);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
fetchMoreNotes() {
|
|
|
|
this.moreFetching = true;
|
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
const promise = this.$root.api('users/notes', {
|
2018-10-18 16:18:33 -05:00
|
|
|
userId: this.user.id,
|
|
|
|
limit: fetchLimit + 1,
|
2018-11-12 10:17:59 -06:00
|
|
|
untilDate: new Date((this.$refs.timeline as any).tail().createdAt).getTime(),
|
2018-10-18 16:18:33 -05:00
|
|
|
withFiles: this.withFiles,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
});
|
|
|
|
|
|
|
|
promise.then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const n of notes) (this.$refs.timeline as any).append(n);
|
2018-10-18 16:18:33 -05:00
|
|
|
this.moreFetching = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
},
|
2018-10-20 01:41:27 -05:00
|
|
|
|
|
|
|
menu() {
|
|
|
|
let menu = [{
|
2018-11-05 10:40:11 -06:00
|
|
|
icon: 'list',
|
2018-11-08 12:44:35 -06:00
|
|
|
text: this.$t('push-to-a-list'),
|
2018-10-20 01:41:27 -05:00
|
|
|
action: () => {
|
2018-11-08 17:13:34 -06:00
|
|
|
const w = this.$root.new(MkUserListsWindow);
|
2018-10-20 01:41:27 -05:00
|
|
|
w.$once('choosen', async list => {
|
|
|
|
w.close();
|
2018-11-08 17:13:34 -06:00
|
|
|
await this.$root.api('users/lists/push', {
|
2018-10-20 01:41:27 -05:00
|
|
|
listId: list.id,
|
|
|
|
userId: this.user.id
|
|
|
|
});
|
2018-12-02 00:28:52 -06:00
|
|
|
this.$root.dialog({
|
2018-11-14 09:01:49 -06:00
|
|
|
type: 'success',
|
|
|
|
splash: true
|
|
|
|
});
|
2018-10-20 01:41:27 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.new(Menu, {
|
2018-10-20 01:41:27 -05:00
|
|
|
source: this.$refs.menu,
|
|
|
|
compact: false,
|
|
|
|
items: menu
|
|
|
|
});
|
2018-10-22 22:32:24 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
toggleShowPinned() {
|
|
|
|
this.showPinned = !this.showPinned;
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleShowImages() {
|
|
|
|
this.showImages = !this.showImages;
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleShowActivity() {
|
|
|
|
this.showActivity = !this.showActivity;
|
2018-10-20 01:41:27 -05:00
|
|
|
}
|
2018-10-18 16:18:33 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.zubukjlciycdsyynicqrnlsmdwmymzqu
|
2018-10-22 08:00:32 -05:00
|
|
|
background var(--deckColumnBg)
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
> .is-remote
|
|
|
|
padding 8px 16px
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
&.is-remote
|
|
|
|
color var(--remoteInfoFg)
|
|
|
|
background var(--remoteInfoBg)
|
|
|
|
|
|
|
|
> a
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
> header
|
|
|
|
overflow hidden
|
|
|
|
background-size cover
|
|
|
|
background-position center
|
|
|
|
|
|
|
|
> div
|
|
|
|
padding 32px
|
|
|
|
background rgba(#000, 0.5)
|
|
|
|
color #fff
|
|
|
|
text-align center
|
|
|
|
|
2018-10-20 01:41:27 -05:00
|
|
|
> .menu
|
|
|
|
position absolute
|
|
|
|
top 8px
|
|
|
|
left 8px
|
|
|
|
padding 8px
|
|
|
|
font-size 16px
|
|
|
|
text-shadow 0 0 8px #000
|
|
|
|
|
2018-10-18 16:18:33 -05:00
|
|
|
> .follow
|
|
|
|
position absolute
|
|
|
|
top 16px
|
|
|
|
right 16px
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
display block
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
margin 0 auto
|
|
|
|
|
|
|
|
> .name
|
|
|
|
display block
|
|
|
|
margin-top 8px
|
|
|
|
font-weight bold
|
|
|
|
text-shadow 0 0 8px #000
|
|
|
|
|
|
|
|
> .acct
|
|
|
|
font-size 14px
|
|
|
|
opacity 0.7
|
|
|
|
text-shadow 0 0 8px #000
|
|
|
|
|
|
|
|
> .info
|
|
|
|
padding 16px
|
2018-10-20 09:44:35 -05:00
|
|
|
font-size 12px
|
2018-10-18 16:18:33 -05:00
|
|
|
color var(--text)
|
|
|
|
text-align center
|
|
|
|
background var(--face)
|
|
|
|
|
|
|
|
&:before
|
|
|
|
content ""
|
|
|
|
display blcok
|
|
|
|
position absolute
|
|
|
|
top -32px
|
|
|
|
left 0
|
|
|
|
right 0
|
|
|
|
width 0px
|
|
|
|
margin 0 auto
|
|
|
|
border-top solid 16px transparent
|
|
|
|
border-left solid 16px transparent
|
|
|
|
border-right solid 16px transparent
|
|
|
|
border-bottom solid 16px var(--face)
|
|
|
|
|
2018-12-11 05:18:12 -06:00
|
|
|
> .fields
|
|
|
|
margin-top 8px
|
|
|
|
|
|
|
|
> .field
|
|
|
|
display flex
|
|
|
|
padding 0
|
|
|
|
margin 0
|
|
|
|
|
|
|
|
> .name
|
|
|
|
padding 4px
|
|
|
|
margin 4px
|
|
|
|
width 30%
|
|
|
|
overflow hidden
|
|
|
|
white-space nowrap
|
|
|
|
text-overflow ellipsis
|
|
|
|
font-weight bold
|
|
|
|
|
|
|
|
> .value
|
|
|
|
padding 4px
|
|
|
|
margin 4px
|
|
|
|
width 70%
|
|
|
|
overflow hidden
|
|
|
|
white-space nowrap
|
|
|
|
text-overflow ellipsis
|
|
|
|
|
2018-10-22 22:32:24 -05:00
|
|
|
> .counts
|
|
|
|
display grid
|
|
|
|
grid-template-columns 1fr 1fr 1fr
|
|
|
|
margin-top 8px
|
|
|
|
border-top solid 1px var(--faceDivider)
|
|
|
|
|
|
|
|
> div
|
|
|
|
padding 8px 8px 0 8px
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
> b
|
|
|
|
display block
|
2018-10-23 00:28:15 -05:00
|
|
|
font-size 110%
|
2018-10-22 22:32:24 -05:00
|
|
|
|
|
|
|
> span
|
|
|
|
display block
|
2018-10-23 00:28:15 -05:00
|
|
|
font-size 80%
|
2018-10-22 22:32:24 -05:00
|
|
|
opacity 0.7
|
2018-10-18 16:18:33 -05:00
|
|
|
|
2018-10-22 22:32:24 -05:00
|
|
|
> *
|
|
|
|
> p.caption
|
2018-10-18 16:18:33 -05:00
|
|
|
margin 0
|
|
|
|
padding 8px 16px
|
2018-10-18 16:24:15 -05:00
|
|
|
font-size 12px
|
2018-10-18 16:18:33 -05:00
|
|
|
color var(--text)
|
|
|
|
|
2018-10-22 22:32:24 -05:00
|
|
|
& + .angle
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 8px
|
|
|
|
padding 6px
|
|
|
|
font-size 14px
|
|
|
|
color var(--text)
|
|
|
|
|
|
|
|
> .pinned
|
2018-10-18 16:18:33 -05:00
|
|
|
> .notes
|
|
|
|
background var(--face)
|
|
|
|
|
|
|
|
> .images
|
2018-10-22 22:32:24 -05:00
|
|
|
> div
|
|
|
|
display grid
|
|
|
|
grid-template-columns 1fr 1fr 1fr
|
|
|
|
gap 8px
|
|
|
|
padding 16px
|
|
|
|
background var(--face)
|
2018-10-18 16:18:33 -05:00
|
|
|
|
2018-10-22 22:32:24 -05:00
|
|
|
> *
|
|
|
|
height 70px
|
|
|
|
background-position center center
|
|
|
|
background-size cover
|
|
|
|
background-clip content-box
|
|
|
|
border-radius 4px
|
2018-10-18 16:18:33 -05:00
|
|
|
|
2018-10-22 08:00:32 -05:00
|
|
|
> .activity
|
2018-10-22 22:32:24 -05:00
|
|
|
> div
|
|
|
|
background var(--face)
|
2018-10-22 08:00:32 -05:00
|
|
|
|
2018-10-18 16:18:33 -05:00
|
|
|
> .tl
|
2018-10-22 22:32:24 -05:00
|
|
|
> div
|
|
|
|
background var(--face)
|
2018-10-18 16:18:33 -05:00
|
|
|
|
|
|
|
</style>
|