UX: Minor button icon color fixes
This commit is contained in:
parent
9de906ddab
commit
58d5fc3632
|
@ -13,15 +13,15 @@
|
|||
{{/if}}
|
||||
|
||||
{{#if canMergeTopic}}
|
||||
{{d-button action=(route-action "moveToTopic") icon="sign-out-alt" label="topic.move_to.action" class="move-to-topic"}}
|
||||
{{d-button action=(route-action "moveToTopic") icon="sign-out-alt" label="topic.move_to.action" class="btn-primary move-to-topic"}}
|
||||
{{/if}}
|
||||
|
||||
{{#if canChangeOwner}}
|
||||
{{d-button action=(route-action "changeOwner") icon="user" label="topic.change_owner.action"}}
|
||||
{{d-button action=(route-action "changeOwner") icon="user" label="topic.change_owner.action" class="btn-primary"}}
|
||||
{{/if}}
|
||||
|
||||
{{#if canMergePosts}}
|
||||
{{d-button action=(action "mergePosts") icon="arrows-v" label="topic.merge_posts.action"}}
|
||||
{{d-button action=(action "mergePosts") icon="arrows-v" label="topic.merge_posts.action" class="btn-primary"}}
|
||||
{{/if}}
|
||||
|
||||
<p class='cancel'><a href {{action "toggleMultiSelect"}}>{{i18n 'topic.multi_select.cancel'}}</a></p>
|
||||
|
|
|
@ -6,8 +6,14 @@ $rollback-darker: darken($rollback, 20%) !default;
|
|||
.btn-rollback {
|
||||
color: $secondary;
|
||||
background: $rollback;
|
||||
.d-icon {
|
||||
color: $secondary;
|
||||
}
|
||||
&:hover {
|
||||
background: $rollback-dark;
|
||||
.d-icon {
|
||||
color: currentColor;
|
||||
}
|
||||
}
|
||||
&:active {
|
||||
@include linear-gradient($rollback-darker, $rollback-dark);
|
||||
|
|
Loading…
Reference in New Issue