mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) updates from grist-core
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* CSS Variables. To use in your web appication, add `cssRootVars` to the class list for your app's
|
||||
* CSS Variables. To use in your web application, add `cssRootVars` to the class list for your app's
|
||||
* root node, typically `<body>`.
|
||||
*
|
||||
* The fonts used attempt to default to system fonts as described here:
|
||||
|
||||
@@ -20,7 +20,7 @@ const cssWrapper = styled('div', `
|
||||
`);
|
||||
|
||||
export const cssLabelText = styled(rawTextInput, `
|
||||
/* Reset apperance */
|
||||
/* Reset appearance */
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
padding: 0;
|
||||
|
||||
@@ -22,7 +22,7 @@ export interface IModalControl {
|
||||
// Returns true if closed, false if closing was prevented.
|
||||
closeAndWait(): Promise<boolean>;
|
||||
|
||||
// Prevents closing, if close has been called ans is pending. No-op otherwise.
|
||||
// Prevents closing, if close has been called and is pending. No-op otherwise.
|
||||
preventClose(): void;
|
||||
|
||||
// Wraps the passed-in function, so that closing is delayed while the function is running. If
|
||||
|
||||
@@ -64,7 +64,7 @@ export function buildPageDom(name: Observable<string>, actions: PageActions, ...
|
||||
dom.on('click', (ev) => { ev.stopPropagation(); ev.preventDefault(); })
|
||||
),
|
||||
// Note that we don't pass extra args when renaming is on, because they usually includes
|
||||
// mouse event handlers interferring with input editor and yields wrong behavior on
|
||||
// mouse event handlers interfering with input editor and yields wrong behavior on
|
||||
// firefox.
|
||||
) :
|
||||
cssPageItem(
|
||||
|
||||
Reference in New Issue
Block a user