Path: blob/main/src/vs/base/browser/ui/findinput/findInput.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/4/* ---------- Find input ---------- */56.monaco-findInput {7position: relative;8}910.monaco-findInput .monaco-inputbox {11font-size: 13px;12width: 100%;13}1415.monaco-findInput > .controls {16position: absolute;17top: 3px;18right: 2px;19}2021.vs .monaco-findInput.disabled {22background-color: #E1E1E1;23}2425/* Theming */26.vs-dark .monaco-findInput.disabled {27background-color: #333;28}2930/* Highlighting */31.monaco-findInput.highlight-0 .controls,32.hc-light .monaco-findInput.highlight-0 .controls {33animation: monaco-findInput-highlight-0 100ms linear 0s;34}3536.monaco-findInput.highlight-1 .controls,37.hc-light .monaco-findInput.highlight-1 .controls {38animation: monaco-findInput-highlight-1 100ms linear 0s;39}4041.hc-black .monaco-findInput.highlight-0 .controls,42.vs-dark .monaco-findInput.highlight-0 .controls {43animation: monaco-findInput-highlight-dark-0 100ms linear 0s;44}4546.hc-black .monaco-findInput.highlight-1 .controls,47.vs-dark .monaco-findInput.highlight-1 .controls {48animation: monaco-findInput-highlight-dark-1 100ms linear 0s;49}5051@keyframes monaco-findInput-highlight-0 {520% { background: rgba(253, 255, 0, 0.8); }53100% { background: transparent; }54}55@keyframes monaco-findInput-highlight-1 {560% { background: rgba(253, 255, 0, 0.8); }57/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/5899% { background: transparent; }59}6061@keyframes monaco-findInput-highlight-dark-0 {620% { background: rgba(255, 255, 255, 0.44); }63100% { background: transparent; }64}65@keyframes monaco-findInput-highlight-dark-1 {660% { background: rgba(255, 255, 255, 0.44); }67/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/6899% { background: transparent; }69}707172