Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/browser/actions/media/actions.css
5251 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-workbench .quick-input-list .quick-input-list-entry.has-actions:hover .quick-input-list-entry-action-bar .action-label.dirty-workspace::before,
7
.monaco-workbench .quick-input-list .quick-input-list-entry.has-actions:hover .quick-input-list-entry-action-bar .action-label.opened-workspace::before {
8
/* Close icon flips between black dot and "X" some entries in the recently opened picker */
9
content: var(--vscode-icon-x-content);
10
font-family: var(--vscode-icon-x-font-family);
11
}
12
13
.monaco-workbench .screencast-mouse {
14
position: absolute;
15
border-width: 2px;
16
border-style: solid;
17
border-radius: 50%;
18
z-index: 100000;
19
content: ' ';
20
pointer-events: none;
21
display: none;
22
}
23
24
.monaco-workbench .screencast-keyboard {
25
position: absolute;
26
background-color: rgba(0, 0, 0, 0.5);
27
width: 100%;
28
left: 0;
29
z-index: 100000;
30
pointer-events: none;
31
color: #eee;
32
line-height: 1.75em;
33
text-align: center;
34
white-space: nowrap;
35
overflow: hidden;
36
text-overflow: ellipsis;
37
}
38
39
.monaco-workbench.monaco-enable-motion .screencast-keyboard {
40
transition: opacity 0.3s ease-out;
41
}
42
43
.monaco-workbench .screencast-keyboard:empty {
44
opacity: 0;
45
}
46
47
.monaco-workbench .screencast-keyboard > .key {
48
padding: 0 8px;
49
box-shadow: inset 0 -3px 0 hsla(0, 0%, 73%, .4);
50
margin-right: 6px;
51
border: 1px solid hsla(0, 0%, 80%, .4);
52
border-radius: 5px;
53
background-color: rgba(255, 255, 255, 0.05);
54
}
55
56
.monaco-workbench .screencast-keyboard > .title {
57
font-weight: 600;
58
}
59
60