inspectTMScopes.css 837 字节
Newer Older
A
Alex Dima 已提交
1 2 3 4 5 6 7 8
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

.tm-inspect-widget {
	z-index: 50;
	user-select: text;
9
	-webkit-user-select: text;
A
Alex Dima 已提交
10 11 12 13
	padding: 10px;
}

.tm-token {
14
	font-family: var(--monaco-monospace-font);
A
Alex Dima 已提交
15 16
}

17 18 19 20 21
.tm-metadata-separator {
	height: 1px;
	border: 0;
}

A
Alex Dima 已提交
22 23 24 25 26 27 28 29 30 31 32
.tm-token-length {
	font-weight: normal;
	font-size: 60%;
	float: right;
}

.tm-metadata-table {
	width: 100%;
}

.tm-metadata-value {
33
	font-family: var(--monaco-monospace-font);
A
Alex Dima 已提交
34 35
	text-align: right;
}
36 37

.tm-theme-selector {
38
	font-family: var(--monaco-monospace-font);
39
}