UX: adjust various button classes (#24121)

This commit is contained in:
Kris 2023-10-27 10:26:59 -04:00 committed by GitHub
parent 983fd04f4b
commit 1c70a14d7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@
{{on "click" (fn this.onCategorySelection "recent")}}
data-section="recent"
type="button"
class="btn btn-default category-button emoji"
class="btn btn-flat category-button emoji"
>
{{replace-emoji ":star:"}}
</button>

View File

@ -247,7 +247,7 @@
<DButton
@action={{action "resetSeenUserTips"}}
data-setting-name="user-reset-seen-user-tips"
class="pref-reset-seen-user-tips"
class="btn-default pref-reset-seen-user-tips"
>{{i18n "user.reset_seen_user_tips"}}</DButton>
{{/if}}
</fieldset>

View File

@ -21,7 +21,7 @@
@icon="plus"
@action={{this.createInvite}}
@label="user.invited.create"
class="btn-default"
class="btn-flat"
/>
{{#if this.canBulkInvite}}
{{#if this.siteSettings.allow_bulk_invite}}

View File

@ -3,7 +3,7 @@ import discourseComputed from "discourse-common/utils/decorators";
import DropdownSelectBoxHeaderComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-header";
export default DropdownSelectBoxHeaderComponent.extend({
classNames: ["notifications-filter-header"],
classNames: ["notifications-filter-header", "btn-flat"],
label: fmt("value", "user.user_notifications.filters.%@"),
@discourseComputed("selectKit.isExpanded")