Merge branch 'develop' into refactor-drive
This commit is contained in:
commit
1d3342e641
20 changed files with 1524 additions and 2139 deletions
|
@ -39,3 +39,9 @@
|
|||
75% { transform: translateY(-8px); }
|
||||
100% { transform: translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0% { opacity: 1; }
|
||||
30% { opacity: 1; }
|
||||
90% { opacity: 0; }
|
||||
}
|
||||
|
|
|
@ -64,5 +64,6 @@ export default Vue.extend({
|
|||
vertical-align super
|
||||
font-size 10px
|
||||
color var(--notificationIndicator)
|
||||
animation blink 1s infinite
|
||||
|
||||
</style>
|
||||
|
|
|
@ -91,6 +91,7 @@ export default Vue.extend({
|
|||
vertical-align super
|
||||
font-size 10px
|
||||
color var(--notificationIndicator)
|
||||
animation blink 1s infinite
|
||||
|
||||
> .pop
|
||||
$bgcolor = var(--face)
|
||||
|
|
|
@ -126,6 +126,7 @@ export default Vue.extend({
|
|||
left 0
|
||||
color var(--notificationIndicator)
|
||||
font-size 16px
|
||||
animation blink 1s infinite
|
||||
|
||||
&.post
|
||||
right 28px
|
||||
|
|
|
@ -9,7 +9,9 @@ const logger = new Logger('url-preview');
|
|||
module.exports = async (ctx: Koa.BaseContext) => {
|
||||
const meta = await fetchMeta();
|
||||
|
||||
logger.info(`Getting preview of ${ctx.query.url} ...`);
|
||||
logger.info(meta.summalyProxy
|
||||
? `(Proxy) Getting preview of ${ctx.query.url} ...`
|
||||
: `Getting preview of ${ctx.query.url} ...`);
|
||||
|
||||
try {
|
||||
const summary = meta.summalyProxy ? await request.get({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue