diff options
| author | rinpatch <rin@patch.cx> | 2021-03-15 17:41:34 +0300 |
|---|---|---|
| committer | rinpatch <rin@patch.cx> | 2021-03-15 17:49:52 +0300 |
| commit | 4c36ac12b67541e25cd09ee25674bdc94f5db236 (patch) | |
| tree | 13f4b159363e5616d5c6c1982e875fcf2bc626d1 /src/components/moderation_tools/moderation_tools.vue | |
| parent | d262f208dca88c22a5428c4359156856757de016 (diff) | |
Add a chevron to moderation tools button to indicate it opens a menu
Closes #1069
Diffstat (limited to 'src/components/moderation_tools/moderation_tools.vue')
| -rw-r--r-- | src/components/moderation_tools/moderation_tools.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/moderation_tools/moderation_tools.vue b/src/components/moderation_tools/moderation_tools.vue index bf25adc5..c4c6ee46 100644 --- a/src/components/moderation_tools/moderation_tools.vue +++ b/src/components/moderation_tools/moderation_tools.vue @@ -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> |
