monaco-editor
Version:
A browser based code editor
31 lines (25 loc) • 835 B
CSS
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.inline-editor-progress-decoration {
display: inline-block;
width: 1em;
height: 1em;
}
.inline-progress-widget {
display: flex ;
justify-content: center;
align-items: center;
}
.inline-progress-widget .icon {
font-size: 80% ;
}
.inline-progress-widget:hover .icon {
font-size: 90% ;
animation: none;
}
.inline-progress-widget:hover .icon::before {
content: var(--vscode-icon-x-content);
font-family: var(--vscode-icon-x-font-family);
}