sidebarpart.css 2.3 KB
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.
 *--------------------------------------------------------------------------------------------*/
A
Alex Dima 已提交
5

E
Erich Gamma 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
.monaco-workbench > .sidebar > .title {
	display: block !important; /* Enable Title visibility */
}

.monaco-workbench > .sidebar > .title > .title-label span {
	text-transform: uppercase;
}

.monaco-workbench.vs > .sidebar > .title > .title-label span {
	color: #6f6f6f;
}

.monaco-workbench.vs-dark > .sidebar > .title > .title-label span {
	color: #bbbbbb;
}

.monaco-workbench > .sidebar > .title > .title-actions {
	background-color: rgb(243, 243, 243);
}

.monaco-workbench.vs-dark > .sidebar > .title > .title-actions {
	background-color: rgb(37, 37, 38);
}

.monaco-workbench > .sidebar > .content {
	overflow: hidden;
}

.monaco-workbench.nosidebar > .sidebar {
	display: none !important;
	visibility: hidden !important;
}

.monaco-workbench > .sidebar > .content > .viewlet {
	height: 100%;
}

.monaco-workbench .viewlet .collapsible.header .title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.monaco-workbench .viewlet .collapsible.header .actions {
	float: right;
	padding-right: 8px;
	display: none;
}

.monaco-workbench .viewlet .collapsible.header:hover .actions {
	display: block;
}

.monaco-workbench .viewlet .collapsible.header .actions .action-label {
	width: 28px;
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 0;
}

.monaco-workbench .viewlet .collapsible.header .actions .action-label .label {
	display: none;
}

.monaco-workbench .viewlet .collapsible.header.collapsed .actions {
	display: none;
}

.monaco-workbench .viewlet .collapsible.header .action-label {
	margin-right: 0.2em;
77
	margin-top: 3px;
E
Erich Gamma 已提交
78 79 80 81 82 83
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
}

/* High Contrast Theming */
A
Alex Dima 已提交
84
.monaco-workbench.hc-black > .sidebar.left {
E
Erich Gamma 已提交
85 86 87
	border-right: 1px solid #6FC3DF;
}

A
Alex Dima 已提交
88
.monaco-workbench.hc-black > .sidebar.right {
E
Erich Gamma 已提交
89 90 91 92 93 94
	border-left: 1px solid #6FC3DF;
}

.monaco-workbench.hc-black > .sidebar > .title > .title-actions {
	background-color: #000;
}