Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/rename/browser/renameWidget.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 .rename-box {
7
z-index: 100;
8
color: inherit;
9
border-radius: 4px;
10
}
11
12
.monaco-editor .rename-box.preview {
13
padding: 4px 4px 0 4px;
14
}
15
16
.monaco-editor .rename-box .rename-input-with-button {
17
padding: 3px;
18
border-radius: 2px;
19
width: calc(100% - 8px); /* 4px padding on each side */
20
}
21
22
.monaco-editor .rename-box .rename-input {
23
width: calc(100% - 8px); /* 4px padding on each side */
24
padding: 0;
25
}
26
27
.monaco-editor .rename-box .rename-input:focus {
28
outline: none;
29
}
30
31
.monaco-editor .rename-box .rename-suggestions-button {
32
display: flex;
33
align-items: center;
34
padding: 3px;
35
background-color: transparent;
36
border: none;
37
border-radius: 5px;
38
cursor: pointer;
39
}
40
41
.monaco-editor .rename-box .rename-suggestions-button:hover {
42
background-color: var(--vscode-toolbar-hoverBackground)
43
}
44
45
.monaco-editor .rename-box .rename-candidate-list-container .monaco-list-row {
46
border-radius: 2px;
47
}
48
49
.monaco-editor .rename-box .rename-label {
50
display: none;
51
opacity: .8;
52
}
53
54
.monaco-editor .rename-box.preview .rename-label {
55
display: inherit;
56
}
57
58