Compare commits

...

2 Commits

Author SHA1 Message Date
c71b0b46d8 Follow from feed from the small action links 2018-12-29 20:12:43 +01:00
daa47af94c Set dark mode 2018-12-29 20:12:29 +01:00
4 changed files with 7035 additions and 6 deletions

7033
src/bulmaswatch.min.css vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -19,8 +19,4 @@
cursor: pointer;
padding: 8px;
}
.channel--name:hover {
background: aliceblue;
color: black;
}
</style>

View File

@ -24,8 +24,6 @@
<div><a :href="author_url">{{ author_name }}</a>
&middot;
<a :href="currentItem.url" target="_new"><span class="published" v-html="niceTime"></span></a>
&middot;
<button class="button is-small" @click="$emit('followFeed', author_url)">Follow</button>
</div>
<h3 class="title is-6" v-if="currentItem.name" v-text="currentItem.name"></h3>
@ -44,6 +42,7 @@
<a @click="like">Like</a>
&middot; <a @click.prevent="openReply">Reply</a>
&middot; <a @click.prevent="repost">Repost</a>
&middot; <a @click.prevent="$emit('followFeed', author_url)" title="Try to follow the feed this item comes from">Follow</a>
&middot; <a @click.prevent="debug">Debug</a>
</span>
</small>

View File

@ -1,3 +1,4 @@
@import 'bulmaswatch.min.css';
.mb-20 {
margin-bottom: 20px;