fileactions.css 5.0 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.
 *--------------------------------------------------------------------------------------------*/

B
Benjamin Pasero 已提交
6 7 8 9 10 11 12 13 14
.monaco-workbench .explorer-viewlet .action-close-all-files {
	background: url("closeall.svg") center center no-repeat;
}

.vs-dark .monaco-workbench .explorer-viewlet .action-close-all-files,
.hc-black .monaco-workbench .explorer-viewlet .action-close-all-files {
	background: url("closeall_inverse.svg") center center no-repeat;
}

E
Erich Gamma 已提交
15 16 17 18 19 20 21 22
.monaco-workbench .explorer-action.new-file {
	background: url('AddFile.svg') center center no-repeat;
}

.monaco-workbench .explorer-action.save-all {
	background: url('saveall.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
23 24
.vs-dark .monaco-workbench .explorer-action.save-all,
.hc-blck .monaco-workbench .explorer-action.save-all {
E
Erich Gamma 已提交
25 26 27
	background: url('saveall_inverse.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
28 29
.vs-dark .monaco-workbench .explorer-action.new-file,
.hc-black .monaco-workbench .explorer-action.new-file {
E
Erich Gamma 已提交
30 31 32 33 34 35 36
	background: url('AddFile_inverse.svg') center center no-repeat;
}

.monaco-workbench .explorer-action.new-folder {
	background: url('AddFolder.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
37 38
.vs-dark .monaco-workbench .explorer-action.new-folder,
.hc-black .monaco-workbench .explorer-action.new-folder {
E
Erich Gamma 已提交
39 40 41 42 43 44 45
	background: url('AddFolder_inverse.svg') center center no-repeat;
}

.monaco-workbench .explorer-action.refresh-explorer {
	background: url('Refresh.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
46 47
.vs-dark .monaco-workbench .explorer-action.refresh-explorer,
.hc-black .monaco-workbench .explorer-action.refresh-explorer {
E
Erich Gamma 已提交
48 49 50 51 52 53 54
	background: url('Refresh_inverse.svg') center center no-repeat;
}

.monaco-workbench .explorer-action.collapse-explorer {
	background: url('CollapseAll.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
55 56
.vs-dark .monaco-workbench .explorer-action.collapse-explorer,
.hc-black .monaco-workbench .explorer-action.collapse-explorer {
E
Erich Gamma 已提交
57 58 59
	background: url('CollapseAll_inverse.svg') center center no-repeat;
}

60 61
.monaco-workbench .quick-open-sidebyside-vertical {
	background-image: url('split-editor-vertical.svg');
E
Erich Gamma 已提交
62 63
}

64 65 66 67 68 69 70 71 72 73 74 75
.vs-dark .monaco-workbench .quick-open-sidebyside-vertical,
.hc-black .monaco-workbench .quick-open-sidebyside-vertical {
	background-image: url('split-editor-vertical-inverse.svg');
}

.monaco-workbench .quick-open-sidebyside-horizontal {
	background-image: url('split-editor-horizontal.svg');
}

.vs-dark .monaco-workbench .quick-open-sidebyside-horizontal,
.hc-black .monaco-workbench .quick-open-sidebyside-horizontal {
	background-image: url('split-editor-horizontal-inverse.svg');
E
Erich Gamma 已提交
76 77 78 79 80 81
}

.monaco-workbench .conflict-editor-action.accept-changes {
	background: url('check.svg') center center no-repeat;
}

82
.vs-dark .monaco-workbench .conflict-editor-action.accept-changes {
E
Erich Gamma 已提交
83 84 85 86 87 88 89
	background: url('check-inverse.svg') center center no-repeat;
}

.monaco-workbench .conflict-editor-action.revert-changes {
	background: url('undo.svg') center center no-repeat;
}

90
.vs-dark .monaco-workbench .conflict-editor-action.revert-changes {
E
Erich Gamma 已提交
91 92 93 94 95 96 97
	background: url('undo-inverse.svg') center center no-repeat;
}

.monaco-workbench .file-editor-action.action-open-preview {
	background: url('Preview.svg') center center no-repeat;
}

B
Benjamin Pasero 已提交
98 99
.vs-dark .monaco-workbench .file-editor-action.action-open-preview ,
.hc-black .monaco-workbench .file-editor-action.action-open-preview {
E
Erich Gamma 已提交
100 101 102
	background: url('Preview_inverse.svg') center center no-repeat;
}

I
isidor 已提交
103
.explorer-viewlet .explorer-open-editors .close-editor-action {
E
Erich Gamma 已提交
104 105 106
	background: url("action-close.svg") center center no-repeat;
}

I
isidor 已提交
107
.explorer-viewlet .explorer-open-editors .focused .monaco-tree-row.selected:not(.highlighted) > .content .close-editor-action {
E
Erich Gamma 已提交
108 109 110
	background: url("action-close-focus.svg") center center no-repeat;
}

I
isidor 已提交
111 112 113 114
.explorer-viewlet .explorer-open-editors .monaco-action-bar {
	background-color: transparent !important;
}

I
isidor 已提交
115
.explorer-viewlet .explorer-open-editors .monaco-tree .monaco-tree-row:not(:hover) > .content.dirty > .monaco-action-bar .close-editor-action {
E
Erich Gamma 已提交
116 117 118
	background: url("action-close-dirty.svg") center center no-repeat;
}

B
Benjamin Pasero 已提交
119 120
.vs-dark .explorer-viewlet .explorer-open-editors .monaco-tree .monaco-tree-row:not(:hover) > .content.dirty > .monaco-action-bar .close-editor-action,
.hc-black .monaco-workbench .explorer-viewlet .explorer-open-editors .monaco-tree .monaco-tree-row:not(:hover) > .content.dirty > .monaco-action-bar .close-editor-action {
I
isidor 已提交
121
	background: url("action-close-dirty-dark.svg") center center no-repeat;
E
Erich Gamma 已提交
122 123
}

I
isidor 已提交
124
.explorer-viewlet .explorer-open-editors .monaco-tree.focused .monaco-tree-row.selected:not(:hover) > .content.dirty > .monaco-action-bar .close-editor-action {
I
isidor 已提交
125
	background: url("action-close-dirty-focus.svg") center center no-repeat;
E
Erich Gamma 已提交
126 127
}

B
Benjamin Pasero 已提交
128
.vs-dark .monaco-workbench .explorer-viewlet .explorer-open-editors .close-editor-action,
I
isidor 已提交
129
.hc-black .monaco-workbench .explorer-viewlet .explorer-open-editors .close-editor-action {
I
isidor 已提交
130
	background: url("action-close-dark.svg") center center no-repeat;
E
Erich Gamma 已提交
131
}