Skip to content

Commit b3c9c27

Browse files
committed
Fixes microsoft/monaco-editor#469: Add an accessibility help pane to the standalone editor
1 parent 5fab02c commit b3c9c27

5 files changed

Lines changed: 423 additions & 0 deletions

File tree

src/vs/editor/editor.main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'use strict';
77

88
import 'vs/editor/editor.all';
9+
import 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp';
910
import 'vs/editor/standalone/browser/inspectTokens/inspectTokens';
1011
import 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard';
1112
import 'vs/editor/standalone/browser/quickOpen/quickOutline';
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*---------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for license information.
4+
*--------------------------------------------------------------------------------------------*/
5+
6+
.monaco-editor .accessibilityHelpWidget {
7+
padding: 10px;
8+
vertical-align: middle;
9+
overflow: scroll;
10+
}

0 commit comments

Comments
 (0)