Skip to content
Snippets Groups Projects
Unverified Commit 58b16bb3 authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #4382 from nextcloud/fix/menu_icons_aligments

Unify action menu icons
parents f5eaf468 d717b735
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@
envelope.flags.important ? t('mail', 'Mark unimportant') : t('mail', 'Mark important')
}}
</ActionButton>
<ActionButton icon="icon-starred"
<ActionButton :icon="iconFavorite"
:close-after-click="true"
@click.prevent="onToggleFlagged">
{{
......@@ -233,6 +233,9 @@ export default {
threadingFileName() {
return `${this.envelope.databaseId}.json`
},
iconFavorite() {
return this.envelope.flags.flagged ? 'icon-favorite' : 'icon-starred'
},
},
methods: {
onToggleFlagged() {
......
......@@ -339,7 +339,6 @@ export default {
margin-top: -2px;
margin-left: 27px;
cursor: pointer;
}
.left:not(.seen) {
font-weight: bold;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment