Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/findinput/findInput.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
/* ---------- Find input ---------- */
6
7
.monaco-findInput {
8
position: relative;
9
}
10
11
.monaco-findInput .monaco-inputbox {
12
font-size: 13px;
13
width: 100%;
14
}
15
16
.monaco-findInput > .controls {
17
position: absolute;
18
top: 3px;
19
right: 2px;
20
}
21
22
.vs .monaco-findInput.disabled {
23
background-color: #E1E1E1;
24
}
25
26
/* Theming */
27
.vs-dark .monaco-findInput.disabled {
28
background-color: #333;
29
}
30
31
/* Highlighting */
32
.monaco-findInput.highlight-0 .controls,
33
.hc-light .monaco-findInput.highlight-0 .controls {
34
animation: monaco-findInput-highlight-0 100ms linear 0s;
35
}
36
37
.monaco-findInput.highlight-1 .controls,
38
.hc-light .monaco-findInput.highlight-1 .controls {
39
animation: monaco-findInput-highlight-1 100ms linear 0s;
40
}
41
42
.hc-black .monaco-findInput.highlight-0 .controls,
43
.vs-dark .monaco-findInput.highlight-0 .controls {
44
animation: monaco-findInput-highlight-dark-0 100ms linear 0s;
45
}
46
47
.hc-black .monaco-findInput.highlight-1 .controls,
48
.vs-dark .monaco-findInput.highlight-1 .controls {
49
animation: monaco-findInput-highlight-dark-1 100ms linear 0s;
50
}
51
52
@keyframes monaco-findInput-highlight-0 {
53
0% { background: rgba(253, 255, 0, 0.8); }
54
100% { background: transparent; }
55
}
56
@keyframes monaco-findInput-highlight-1 {
57
0% { background: rgba(253, 255, 0, 0.8); }
58
/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
59
99% { background: transparent; }
60
}
61
62
@keyframes monaco-findInput-highlight-dark-0 {
63
0% { background: rgba(255, 255, 255, 0.44); }
64
100% { background: transparent; }
65
}
66
@keyframes monaco-findInput-highlight-dark-1 {
67
0% { background: rgba(255, 255, 255, 0.44); }
68
/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
69
99% { background: transparent; }
70
}
71
72