Add a chevron to moderation tools button to indicate it opens a menu

Closes #1069
This commit is contained in:
rinpatch 2021-03-15 17:41:34 +03:00
parent d262f208dc
commit 4c36ac12b6
2 changed files with 13 additions and 1 deletions

View file

@ -124,10 +124,11 @@
</div>
<button
slot="trigger"
class="btn button-default btn-block"
class="btn button-default btn-block moderation-tools-button"
:class="{ toggled }"
>
{{ $t('user_card.admin_menu.moderation') }}
<FAIcon icon="chevron-down" />
</button>
</Popover>
<portal to="modal">
@ -170,4 +171,10 @@
height: 100%;
}
}
.moderation-tools-button {
svg,i {
font-size: 0.8em;
}
}
</style>