lineNumbers.css 744 字节
Newer Older
E
Erich Gamma 已提交
1 2 3 4
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
5

E
Erich Gamma 已提交
6 7 8
.monaco-editor .margin-view-overlays .line-numbers {
	position: absolute;
	text-align: right;
A
Alex Dima 已提交
9 10 11 12
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	cursor: default;
13
	height: 100%;
A
Alex Dima 已提交
14 15
}

16 17 18 19 20 21
.monaco-editor .relative-current-line-number {
	text-align: left;
	display: inline-block;
	width: 100%;
}

22 23 24
.monaco-editor .margin-view-overlays .line-numbers.lh-odd {
	margin-top: 1px;
}