forked from opensearch-project/dashboards-query-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Support dark mode and session for sql, minor bug fixes (opens…
…earch-project#165) (opensearch-project#169)" This reverts commit 0f5673a.
- Loading branch information
1 parent
5aaf7ba
commit 607b01c
Showing
20 changed files
with
529 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import * as ace from 'brace'; | ||
|
||
ace.define('ace/theme/sql_console', ['require', 'exports', 'module', 'ace/lib/dom'], function ( | ||
acequire, | ||
exports, | ||
module | ||
) { | ||
exports.isDark = false; | ||
exports.cssClass = 'ace-sql-console'; | ||
exports.cssText = require('../index.scss'); | ||
|
||
const dom = acequire('../lib/dom'); | ||
dom.importCssString(exports.cssText, exports.cssClass); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.