UX: update appropriate btn-flat instances to btn-transparent ()

With the adjustments of `btn-transparent` in https://github.com/discourse/discourse/pull/24666, there are more buttons that could use this class instead of `btn-flat`. This mostly relates to `x` close buttons, but also includes composer and chat toggles.

The primary difference between these styles is that `btn-transparent` never has a background, where `btn-flat` may have a hover or focus background.
This commit is contained in:
Kris 2024-02-29 05:47:07 -05:00 committed by GitHub
parent 88f833418f
commit 8c22831672
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
29 changed files with 36 additions and 44 deletions

@ -41,7 +41,7 @@
<DButton <DButton
@action={{@closeModal}} @action={{@closeModal}}
@label="cancel" @label="cancel"
class="btn-flat d-modal-cancel" class="btn-transparent d-modal-cancel"
/> />
</:footer> </:footer>
</DModal> </DModal>

@ -65,7 +65,7 @@
/> />
{{else}} {{else}}
<DButton <DButton
class="btn-flat select-inactive-mode" class="btn-transparent select-inactive-mode"
@action={{this.toggleInactiveMode}} @action={{this.toggleInactiveMode}}
> >
{{d-icon "list"}} {{d-icon "list"}}

@ -401,7 +401,7 @@
@translatedTitle={{this.composer.toggleText}} @translatedTitle={{this.composer.toggleText}}
@icon="angle-double-left" @icon="angle-double-left"
class={{concat-class class={{concat-class
"btn-flat btn-mini-toggle toggle-preview" "btn-transparent btn-mini-toggle toggle-preview"
(unless this.composer.showPreview "active") (unless this.composer.showPreview "active")
}} }}
/> />

@ -3,5 +3,5 @@
@icon="times" @icon="times"
@label="composer.esc" @label="composer.esc"
@ariaLabel="composer.esc_label" @ariaLabel="composer.esc_label"
class="btn-flat close" class="btn-transparent close"
/> />

@ -18,7 +18,7 @@
@icon={{this.fullscreenIcon}} @icon={{this.fullscreenIcon}}
@action={{this.toggleFullscreen}} @action={{this.toggleFullscreen}}
@title={{this.fullscreenTitle}} @title={{this.fullscreenTitle}}
class="btn-flat toggle-fullscreen btn-mini-toggle" class="btn-transparent toggle-fullscreen btn-mini-toggle"
/> />
{{/if}} {{/if}}
@ -26,6 +26,6 @@
@icon={{this.toggleIcon}} @icon={{this.toggleIcon}}
@action={{this.toggleComposer}} @action={{this.toggleComposer}}
@title={{this.toggleTitle}} @title={{this.toggleTitle}}
class="btn-flat toggler toggle-minimize btn-mini-toggle" class="btn-transparent toggler toggle-minimize btn-mini-toggle"
/> />
</div> </div>

@ -11,7 +11,7 @@
@title="experimental_lightbox.buttons.previous" @title="experimental_lightbox.buttons.previous"
@icon={{@previousButtonIcon}} @icon={{@previousButtonIcon}}
@ariaHidden="true" @ariaHidden="true"
class="d-lightbox__previous-button btn-flat" class="d-lightbox__previous-button btn-transparent"
/> />
{{/if}} {{/if}}
{{#if @isLoading}} {{#if @isLoading}}

@ -57,7 +57,7 @@
@icon="times" @icon="times"
@action={{this.handleCloseButton}} @action={{this.handleCloseButton}}
@title="modal.close" @title="modal.close"
class="btn-flat modal-close" class="btn-transparent modal-close"
/> />
{{/if}} {{/if}}
</div> </div>

@ -16,7 +16,7 @@
<DButton <DButton
@icon="times" @icon="times"
@action={{fn this.dismissNotice notice}} @action={{fn this.dismissNotice notice}}
class="btn-flat close" class="btn-transparent close"
/> />
{{/if}} {{/if}}
</div> </div>

@ -70,7 +70,7 @@ export default class NotificationConsentBanner extends Component {
@icon="times" @icon="times"
@action={{this.dismiss}} @action={{this.dismiss}}
@title="banner.close" @title="banner.close"
class="btn-flat close" class="btn-transparent close"
/> />
</div> </div>
</div> </div>

@ -12,7 +12,7 @@
@icon="times" @icon="times"
@action={{action "dismiss"}} @action={{action "dismiss"}}
@title="banner.close" @title="banner.close"
class="btn-flat close" class="btn-transparent close"
/> />
</div> </div>
</div> </div>

@ -4,7 +4,7 @@
@action={{@toggleSectionDisplay}} @action={{@toggleSectionDisplay}}
aria-controls={{@sidebarSectionContentID}} aria-controls={{@sidebarSectionContentID}}
aria-expanded={{if @isExpanded "true" "false"}} aria-expanded={{if @isExpanded "true" "false"}}
class="sidebar-section-header sidebar-section-header-collapsable btn-flat" class="sidebar-section-header sidebar-section-header-collapsable btn-transparent"
> >
{{yield}} {{yield}}
</DButton> </DButton>

@ -5,7 +5,7 @@
> >
<button <button
type="button" type="button"
class="btn-emoji btn-flat" class="btn-emoji btn-transparent"
onclick={{this.toggleEmojiPicker}} onclick={{this.toggleEmojiPicker}}
{{on "focus" this.focus}} {{on "focus" this.focus}}
{{on "blur" this.blur}} {{on "blur" this.blur}}

@ -1,3 +1,3 @@
<button class='btn-flat {{class}}' title='{{i18n "topics.bulk.toggle"}}'> <button class='btn-transparent {{class}}' title='{{i18n "topics.bulk.toggle"}}'>
{{d-icon icon}} {{d-icon icon}}
</button> </button>

@ -48,7 +48,7 @@ const DDefaultToast = <template>
{{/if}} {{/if}}
</div> </div>
<div class="fk-d-default-toast__close-container"> <div class="fk-d-default-toast__close-container">
<DButton class="btn-flat" @icon="times" @action={{@close}} /> <DButton class="btn-transparent" @icon="times" @action={{@close}} />
</div> </div>
</div> </div>
</template>; </template>;

@ -176,10 +176,6 @@ html.composer-open {
display: flex; display: flex;
gap: 8px; gap: 8px;
margin-left: 8px; margin-left: 8px;
.d-icon {
color: var(--primary-medium);
}
} }
} }

@ -82,6 +82,10 @@
&.sidebar-section-header-collapsable { &.sidebar-section-header-collapsable {
justify-content: flex-start; justify-content: flex-start;
&:hover {
color: var(--primary);
}
&:focus { &:focus {
background: transparent; background: transparent;
} }

@ -452,16 +452,9 @@
border-radius: var(--d-border-radius); border-radius: var(--d-border-radius);
padding: 0.4em 0.467em; padding: 0.4em 0.467em;
.d-icon { .d-icon {
color: var(--primary-high); color: var(--primary-medium);
} }
@include hover { @include hover {
background: transparent;
.d-icon {
color: var(--primary);
}
}
&:focus {
background: var(--primary-low);
.d-icon { .d-icon {
color: var(--primary); color: var(--primary);
} }

@ -12,10 +12,6 @@
margin: 3px; margin: 3px;
width: 2.3em; width: 2.3em;
text-align: center; text-align: center;
.svg-icon {
color: var(--primary-high);
}
} }
.user-status-description { .user-status-description {

@ -38,7 +38,7 @@ export default class ChatNotices extends Component {
<DButton <DButton
@icon="times" @icon="times"
@action={{this.clearNotice}} @action={{this.clearNotice}}
class="btn-flat chat-notices__notice__clear" class="btn-transparent chat-notices__notice__clear"
/> />
</div> </div>
</template> </template>

@ -41,7 +41,7 @@ export default class ChatRetentionReminder extends Component {
<DButton <DButton
@action={{this.dismiss}} @action={{this.dismiss}}
@icon="times" @icon="times"
class="btn no-text btn-icon btn-flat no-text dismiss-btn" class="no-text btn-icon btn-transparent dismiss-btn"
/> />
</div> </div>
{{/if}} {{/if}}

@ -18,7 +18,7 @@ export default class ChatNavbarCloseDrawerButton extends Component {
@icon="times" @icon="times"
@action={{this.closeDrawer}} @action={{this.closeDrawer}}
@title="chat.close" @title="chat.close"
class="btn-flat no-text c-navbar__close-drawer-button" class="btn-transparent no-text c-navbar__close-drawer-button"
/> />
</template> </template>
} }

@ -10,7 +10,7 @@ export default class ChatNavbarCloseThreadButton extends Component {
<template> <template>
{{#if this.site.desktopView}} {{#if this.site.desktopView}}
<LinkTo <LinkTo
class="c-navbar__close-thread-button btn-flat btn btn-icon no-text" class="c-navbar__close-thread-button btn-transparent btn btn-icon no-text"
@route="chat.channel" @route="chat.channel"
@models={{@thread.channel.routeModels}} @models={{@thread.channel.routeModels}}
title={{i18n "chat.thread.close"}} title={{i18n "chat.thread.close"}}

@ -12,7 +12,7 @@ export default class ChatNavbarCloseThreadsButton extends Component {
<template> <template>
{{#if this.site.desktopView}} {{#if this.site.desktopView}}
<LinkTo <LinkTo
class="c-navbar__close-threads-button btn-flat btn btn-icon no-text" class="c-navbar__close-threads-button btn-transparent btn btn-icon no-text"
@route="chat.channel" @route="chat.channel"
@models={{@channel.routeModels}} @models={{@channel.routeModels}}
title={{this.closeButtonTitle}} title={{this.closeButtonTitle}}

@ -24,7 +24,7 @@ export default class ChatNavbarFullPageButton extends Component {
{{#if this.chatStateManager.isDrawerExpanded}} {{#if this.chatStateManager.isDrawerExpanded}}
<DButton <DButton
@icon="discourse-expand" @icon="discourse-expand"
class="btn-flat no-text c-navbar__full-page-button" class="btn-transparent no-text c-navbar__full-page-button"
@title="chat.open_full_page" @title="chat.open_full_page"
@action={{this.openInFullPage}} @action={{this.openInFullPage}}
/> />

@ -22,7 +22,7 @@ export default class ChatNavbarOpenDrawerButton extends Component {
<DButton <DButton
@icon="discourse-compress" @icon="discourse-compress"
@title="chat.close_full_page" @title="chat.close_full_page"
class="c-navbar__open-drawer-button btn-flat" class="c-navbar__open-drawer-button btn-transparent"
@action={{this.openDrawer}} @action={{this.openDrawer}}
/> />
{{/if}} {{/if}}

@ -30,7 +30,7 @@ export default class ChatNavbarThreadSettingsButton extends Component {
@action={{this.openThreadSettings}} @action={{this.openThreadSettings}}
@icon="cog" @icon="cog"
@title="chat.thread.settings" @title="chat.thread.settings"
class="btn-flat c-navbar__thread-settings-button" class="btn-transparent c-navbar__thread-settings-button"
/> />
{{/if}} {{/if}}
</template> </template>

@ -19,7 +19,7 @@ export default class ChatNavbarToggleDrawerButton extends Component {
"chat.collapse" "chat.collapse"
"chat.expand" "chat.expand"
}} }}
class="btn-flat no-text c-navbar__toggle-drawer-button" class="btn-transparent no-text c-navbar__toggle-drawer-button"
/> />
</template> </template>
} }

@ -537,7 +537,7 @@ export default class ChatRouteChannelInfoSettings extends Component {
@action={{this.onArchiveChannel}} @action={{this.onArchiveChannel}}
@label="chat.channel_settings.archive_channel" @label="chat.channel_settings.archive_channel"
@icon="archive" @icon="archive"
class="archive-btn chat-form__btn btn-flat" class="archive-btn chat-form__btn btn-transparent"
/> />
</:action> </:action>
</section.row> </section.row>
@ -550,14 +550,14 @@ export default class ChatRouteChannelInfoSettings extends Component {
@action={{this.onToggleChannelState}} @action={{this.onToggleChannelState}}
@label="chat.channel_settings.close_channel" @label="chat.channel_settings.close_channel"
@icon="lock" @icon="lock"
class="close-btn chat-form__btn btn-flat" class="close-btn chat-form__btn btn-transparent"
/> />
{{else}} {{else}}
<DButton <DButton
@action={{this.onToggleChannelState}} @action={{this.onToggleChannelState}}
@label="chat.channel_settings.open_channel" @label="chat.channel_settings.open_channel"
@icon="unlock" @icon="unlock"
class="open-btn chat-form__btn btn-flat" class="open-btn chat-form__btn btn-transparent"
/> />
{{/if}} {{/if}}
</:action> </:action>
@ -569,7 +569,7 @@ export default class ChatRouteChannelInfoSettings extends Component {
@action={{this.onDeleteChannel}} @action={{this.onDeleteChannel}}
@label="chat.channel_settings.delete_channel" @label="chat.channel_settings.delete_channel"
@icon="trash-alt" @icon="trash-alt"
class="delete-btn chat-form__btn btn-flat" class="delete-btn chat-form__btn btn-transparent"
/> />
</:action> </:action>
</section.row> </section.row>

@ -99,6 +99,9 @@
display: flex; display: flex;
align-items: center; align-items: center;
height: var(--chat-header-offset); height: var(--chat-header-offset);
.d-icon {
color: var(--primary-low-mid);
}
} }
.c-navbar__back-button ~ .c-navbar__title { .c-navbar__back-button ~ .c-navbar__title {