mirror of https://github.com/zulip/zulip.git
settings_linkifiers: Make edit and delete buttons rounded.
All the buttons in settings have become rounded but these were still square with no border-radius. Added the `rounded` class for them to have the standard border-radius.
This commit is contained in:
parent
0de9f7f5cf
commit
d7a3b87020
|
@ -14,10 +14,10 @@
|
|||
</td>
|
||||
{{#if ../can_modify}}
|
||||
<td class="no-select actions">
|
||||
<button class="button small edit btn-warning tippy-zulip-delayed-tooltip" data-linkifier-id="{{id}}" data-tippy-content="{{t 'Edit' }}" aria-label="{{t 'Edit' }}">
|
||||
<button class="button small rounded edit btn-warning tippy-zulip-delayed-tooltip" data-linkifier-id="{{id}}" data-tippy-content="{{t 'Edit' }}" aria-label="{{t 'Edit' }}">
|
||||
<i class="fa fa-pencil"></i>
|
||||
</button>
|
||||
<button class="button small delete btn-danger tippy-zulip-delayed-tooltip" data-linkifier-id="{{id}}" data-tippy-content="{{t 'Delete' }}" aria-label="{{t 'Delete' }}">
|
||||
<button class="button small rounded delete btn-danger tippy-zulip-delayed-tooltip" data-linkifier-id="{{id}}" data-tippy-content="{{t 'Delete' }}" aria-label="{{t 'Delete' }}">
|
||||
<i class="fa fa-trash-o"></i>
|
||||
</button>
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue