Skip to content

Commit

Permalink
fix(webui): replace mark as read/unread buttons with icons
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Jun 3, 2020
1 parent 5867db7 commit 709ee1e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions komga-webui/src/views/BrowseSeries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,22 @@

<v-spacer/>

<v-btn @click="markSelectedRead()">
Mark as read
<v-btn icon @click="markSelectedRead()">
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-icon v-on="on">mdi-bookmark-check</v-icon>
</template>
<span>Mark as Read</span>
</v-tooltip>
</v-btn>

<v-btn @click="markSelectedUnread()">
Mark as unread
<v-btn icon @click="markSelectedUnread()">
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-icon v-on="on">mdi-bookmark-remove</v-icon>
</template>
<span>Mark as Unread</span>
</v-tooltip>
</v-btn>

<v-btn icon @click="dialogEditBooks = true" v-if="isAdmin">
Expand Down

0 comments on commit 709ee1e

Please sign in to comment.