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

6
.vs .monaco-workbench .textdiff-editor-action.next {
E
Erich Gamma 已提交
7 8 9
	background: url('next-diff.svg') center center no-repeat;
}

10
.vs .monaco-workbench .textdiff-editor-action.previous {
E
Erich Gamma 已提交
11 12 13
	background: url('previous-diff.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
14 15
.vs-dark .monaco-workbench .textdiff-editor-action.next,
.hc-black .monaco-workbench .textdiff-editor-action.next {
E
Erich Gamma 已提交
16 17 18
	background: url('next-diff-inverse.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
19 20
.vs-dark .monaco-workbench .textdiff-editor-action.previous,
.hc-black .monaco-workbench .textdiff-editor-action.previous {
E
Erich Gamma 已提交
21
	background: url('previous-diff-inverse.svg') center center no-repeat;
22 23 24
}

.vs .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace {
25 26
	opacity: 1;
	background: url('Paragraph_16x_nohalo.svg') center center no-repeat;
27 28 29
}
.vs-dark .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace,
.hc-black .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace {
30 31
	opacity: 1;
	background: url('Paragraph_16x_nohalo_inversep.svg') center center no-repeat;
32 33 34
}

.vs .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace.is-checked {
35
	opacity: 0.5;
36 37 38
}
.vs-dark .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace.is-checked,
.hc-black .monaco-workbench .textdiff-editor-action.toggleIgnoreTrimWhitespace.is-checked {
39
	opacity: 0.5;
40
}