Skip to content

UX: Introduce shadow variables #34151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Update interface-color-selector.gjs
  • Loading branch information
jordanvidrine committed Aug 7, 2025
commit 024b32c452768b39839bdc39c460aa3bd73dd870
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default class InterfaceColorSelector extends Component {
<DropdownMenu as |dropdown|>
<dropdown.item>
<DButton
class="interface-color-selector__light-option"
class="interface-color-selector__light-option btn-flat"
@icon="sun"
@translatedLabel={{i18n
"sidebar.footer.interface_color_selector.light"
Expand All @@ -61,7 +61,7 @@ export default class InterfaceColorSelector extends Component {
</dropdown.item>
<dropdown.item>
<DButton
class="interface-color-selector__dark-option"
class="interface-color-selector__dark-option btn-flat"
@icon="moon"
@translatedLabel={{i18n
"sidebar.footer.interface_color_selector.dark"
Expand All @@ -71,7 +71,7 @@ export default class InterfaceColorSelector extends Component {
</dropdown.item>
<dropdown.item>
<DButton
class="interface-color-selector__auto-option"
class="interface-color-selector__auto-option btn-flat"
@icon="circle-half-stroke"
@translatedLabel={{i18n
"sidebar.footer.interface_color_selector.auto"
Expand Down