26 lines
872 B
CSS
26 lines
872 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
@font-face {
|
|
font-family: "codicon";
|
|
font-display: block;
|
|
src: url(./codicon.ttf) format("truetype");
|
|
}
|
|
|
|
.codicon[class*='codicon-'] {
|
|
font: normal normal normal 16px/1 codicon;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
text-rendering: auto;
|
|
text-align: center;
|
|
text-transform: none;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
/* icon rules are dynamically created by the platform theme service (see iconsStyleSheet.ts) */
|