mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 18:22:34 -05:00
74 lines
2.1 KiB
CSS
74 lines
2.1 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
/* ---------- Find input ---------- */
|
|
|
|
.monaco-findInput {
|
|
position: relative;
|
|
}
|
|
|
|
.monaco-findInput .monaco-inputbox {
|
|
font-size: 13px;
|
|
width: 100%;
|
|
height: 25px;
|
|
}
|
|
|
|
.fl:after {
|
|
clear: both;
|
|
content: '';
|
|
display: block;
|
|
visibility: hidden;
|
|
height: 0;
|
|
}
|
|
|
|
.monaco-findInput > .controls {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 2px;
|
|
}
|
|
|
|
.vs .monaco-findInput.disabled {
|
|
background-color: #E1E1E1;
|
|
}
|
|
|
|
/* Theming */
|
|
.vs-dark .monaco-findInput.disabled {
|
|
background-color: #333;
|
|
}
|
|
|
|
/* Highlighting */
|
|
.monaco-findInput.highlight-0 .controls {
|
|
animation: monaco-findInput-highlight-0 100ms linear 0s;
|
|
}
|
|
.monaco-findInput.highlight-1 .controls {
|
|
animation: monaco-findInput-highlight-1 100ms linear 0s;
|
|
}
|
|
.hc-black .monaco-findInput.highlight-0 .controls,
|
|
.vs-dark .monaco-findInput.highlight-0 .controls {
|
|
animation: monaco-findInput-highlight-dark-0 100ms linear 0s;
|
|
}
|
|
.hc-black .monaco-findInput.highlight-1 .controls,
|
|
.vs-dark .monaco-findInput.highlight-1 .controls {
|
|
animation: monaco-findInput-highlight-dark-1 100ms linear 0s;
|
|
}
|
|
|
|
@keyframes monaco-findInput-highlight-0 {
|
|
0% { background: rgba(253, 255, 0, 0.8); }
|
|
100% { background: transparent; }
|
|
}
|
|
@keyframes monaco-findInput-highlight-1 {
|
|
0% { background: rgba(253, 255, 0, 0.8); }
|
|
/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
|
|
99% { background: transparent; }
|
|
}
|
|
|
|
@keyframes monaco-findInput-highlight-dark-0 {
|
|
0% { background: rgba(255, 255, 255, 0.44); }
|
|
100% { background: transparent; }
|
|
}
|
|
@keyframes monaco-findInput-highlight-dark-1 {
|
|
0% { background: rgba(255, 255, 255, 0.44); }
|
|
/* Made intentionally different such that the CSS minifier does not collapse the two animations into a single one*/
|
|
99% { background: transparent; }
|
|
} |