mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-24 10:48:11 +08:00
Revamp UI styling to remove accent color; improve tab navigation
This commit is contained in:
@@ -708,6 +708,8 @@ export abstract class WidgetProps {
|
||||
export class CheckboxInput extends WidgetProps {
|
||||
checked!: boolean;
|
||||
|
||||
disabled!: boolean;
|
||||
|
||||
icon!: IconName;
|
||||
|
||||
@Transform(({ value }: { value: string }) => (value.length > 0 ? value : undefined))
|
||||
@@ -833,6 +835,8 @@ export class NumberInput extends WidgetProps {
|
||||
export class OptionalInput extends WidgetProps {
|
||||
checked!: boolean;
|
||||
|
||||
disabled!: boolean;
|
||||
|
||||
icon!: IconName;
|
||||
|
||||
@Transform(({ value }: { value: string }) => (value.length > 0 ? value : undefined))
|
||||
|
||||
Reference in New Issue
Block a user