mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-23 03:08:12 +08:00
Revamp UI styling to remove accent color; improve tab navigation
This commit is contained in:
@@ -43,11 +43,7 @@ export function createInputManager(editor: Editor, container: HTMLElement, dialo
|
||||
{ target: window, eventName: "wheel", action: (e: WheelEvent): void => onWheelScroll(e), options: { passive: false } },
|
||||
{ target: window, eventName: "modifyinputfield", action: (e: CustomEvent): void => onModifyInputField(e) },
|
||||
{ target: window.document.body, eventName: "paste", action: (e: ClipboardEvent): void => onPaste(e) },
|
||||
{
|
||||
target: app as EventListenerTarget,
|
||||
eventName: "blur",
|
||||
action: (): void => blurApp(),
|
||||
},
|
||||
{ target: app as EventListenerTarget, eventName: "blur", action: (): void => blurApp() },
|
||||
];
|
||||
|
||||
// Event bindings
|
||||
|
||||
Reference in New Issue
Block a user