mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: add missing button classes (#30997)
While updating a couple of themes I noticed some buttons were missing `.btn-default`, which resulted in some inconsistent button styling
This commit is contained in:
parent
4c1c4ba8d4
commit
d2efdf5282
@ -2,7 +2,7 @@ import DButton from "discourse/components/d-button";
|
||||
|
||||
const BulkSelectToggle = <template>
|
||||
<DButton
|
||||
class="bulk-select"
|
||||
class="btn-default bulk-select"
|
||||
@action={{@bulkSelectHelper.toggleBulkSelect}}
|
||||
@icon="list"
|
||||
/>
|
||||
|
@ -101,6 +101,7 @@ export default class NotificationsTracking extends Component {
|
||||
@identifier="notifications-tracking"
|
||||
@modalForMobile={{true}}
|
||||
@triggerClass={{concatClass
|
||||
"btn-default"
|
||||
"notifications-tracking-trigger-btn"
|
||||
@triggerClass
|
||||
}}
|
||||
|
@ -83,7 +83,7 @@ export default class TopicDraftsDropdown extends Component {
|
||||
@onRegisterApi={{this.onRegisterApi}}
|
||||
@modalForMobile={{true}}
|
||||
@disabled={{this.loading}}
|
||||
class="btn-small"
|
||||
class="btn-small btn-default"
|
||||
>
|
||||
<:content>
|
||||
<DropdownMenu as |dropdown|>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<div class="panel-body-bottom">
|
||||
{{#if this.showAllHref}}
|
||||
<DButton
|
||||
class="show-all"
|
||||
class="btn-default show-all"
|
||||
@href={{this.showAllHref}}
|
||||
@translatedAriaLabel={{this.showAllTitle}}
|
||||
@translatedTitle={{this.showAllTitle}}
|
||||
|
Loading…
Reference in New Issue
Block a user