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