Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css
3296 views
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 .iPadShowKeyboard {
7
width: 58px;
8
min-width: 0;
9
height: 36px;
10
min-height: 0;
11
margin: 0;
12
padding: 0;
13
position: absolute;
14
resize: none;
15
overflow: hidden;
16
background: url('keyboard-light.svg') center center no-repeat;
17
border: 4px solid #F6F6F6;
18
border-radius: 4px;
19
}
20
21
.monaco-editor.vs-dark .iPadShowKeyboard {
22
background: url('keyboard-dark.svg') center center no-repeat;
23
border: 4px solid #252526;
24
}
25