shell.css 5.0 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

.monaco-shell {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-size: 11px;
13
	user-select: none;
E
Erich Gamma 已提交
14 15
}

16
/* Font Families (with CJK support) */
B
Benjamin Pasero 已提交
17

18
.monaco-shell { font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Ubuntu", "Droid Sans", sans-serif; }
J
Joao Moreno 已提交
19 20 21 22
.monaco-shell:lang(zh-Hans) { font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Noto Sans", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Source Han Sans CN", "Source Han Sans", sans-serif; }
.monaco-shell:lang(zh-Hant) { font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Noto Sans", "Microsoft Jhenghei", "PingFang TC", "Source Han Sans TC", "Source Han Sans", "Source Han Sans TW", sans-serif; }
.monaco-shell:lang(ja) { font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Noto Sans", "Meiryo", "Hiragino Kaku Gothic Pro", "Source Han Sans J", "Source Han Sans JP", "Source Han Sans", "Sazanami Gothic", "IPA Gothic", sans-serif; }
.monaco-shell:lang(ko) { font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Noto Sans", "Malgun Gothic", "Nanum Gothic", "Dotom", "Apple SD Gothic Neo", "AppleGothic", "Source Han Sans K", "Source Han Sans JR", "Source Han Sans", "UnDotum", "FBaekmuk Gulim", sans-serif; }
B
Benjamin Pasero 已提交
23

E
Erich Gamma 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.monaco-shell img {
	border: 0;
}

.monaco-shell label {
	cursor: pointer;
}

.monaco-shell a {
	text-decoration: none;
}

B
Benjamin Pasero 已提交
38 39 40 41 42
.monaco-shell a:active {
	color: inherit;
	background-color: inherit;
}

E
Erich Gamma 已提交
43 44 45 46 47
.monaco-shell a.plain {
	color: inherit;
	text-decoration: none;
}

B
Benjamin Pasero 已提交
48 49
.monaco-shell a.plain:hover,
.monaco-shell a.plain.hover {
E
Erich Gamma 已提交
50 51 52 53
	color: inherit;
	text-decoration: none;
}

B
Benjamin Pasero 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67
.monaco-shell input {
	color: inherit;
	font-family: inherit;
	font-size: 100%;
}

.monaco-shell select {
	font-family: inherit;
}

.monaco-shell .pointer {
	cursor: pointer;
}

B
Benjamin Pasero 已提交
68 69 70 71 72 73 74 75 76
.monaco-shell .monaco-menu .monaco-action-bar.vertical {
	padding: .5em 0;
}

.monaco-shell .monaco-menu .monaco-action-bar.vertical .action-label,
.monaco-shell .monaco-menu .monaco-action-bar.vertical .keybinding {
	padding: 0.5em 2em;
}

B
Benjamin Pasero 已提交
77 78 79 80 81 82 83 84 85 86 87
/* START Keyboard Focus Indication Styles */

.monaco-shell [tabindex="0"]:focus,
.monaco-shell .synthetic-focus,
.monaco-shell select:focus,
.monaco-shell input[type="button"]:focus,
.monaco-shell input[type="text"]:focus,
.monaco-shell textarea:focus,
.monaco-shell input[type="checkbox"]:focus {
	outline-width: 1px;
	outline-style: solid;
B
Benjamin Pasero 已提交
88
	outline-offset: -1px;
89
	opacity: 1 !important;
90 91
}

92 93 94 95 96 97 98 99 100 101
.monaco-shell [tabindex="0"]:active,
.monaco-shell select:active,
.monaco-shell input[type="button"]:active,
.monaco-shell input[type="checkbox"]:active,
.monaco-shell .monaco-tree .monaco-tree-row
.monaco-action-bar .action-item [tabindex="0"]:hover,
.monaco-shell .monaco-tree.focused.no-focused-item:active:before {
	outline: 0 !important; /* fixes some flashing outlines from showing up when clicking */
}

102
.monaco-shell .mac select:focus {
103
	border: none; /* outline is a square, but border has a radius, so we avoid this glitch when focused (https://github.com/Microsoft/vscode/issues/26045) */
104 105
}

106
.monaco-shell .monaco-tree.focused .monaco-tree-row.focused [tabindex="0"]:focus {
B
Benjamin Pasero 已提交
107 108
	outline-width: 1px; /* higher contrast color for focusable elements in a row that shows focus feedback */
	outline-style: solid;
109 110
}

J
Joao Moreno 已提交
111 112
.monaco-shell .monaco-tree.focused.no-focused-item:focus:before,
.monaco-shell .monaco-list:not(.element-focused):focus:before {
113 114 115 116 117 118 119 120
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5; /* make sure we are on top of the tree items */
	content: "";
	pointer-events: none; /* enable click through */
B
Benjamin Pasero 已提交
121
	outline: 1px solid; /* we still need to handle the empty tree or no focus item case */
B
Benjamin Pasero 已提交
122 123
	outline-width: 1px;
	outline-style: solid;
B
Benjamin Pasero 已提交
124
	outline-offset: -1px;
125 126
}

B
Benjamin Pasero 已提交
127 128 129 130
.monaco-shell .synthetic-focus :focus {
	outline: 0 !important; /* elements within widgets that draw synthetic-focus should never show focus */
}

131 132 133
.monaco-shell .monaco-inputbox.info.synthetic-focus,
.monaco-shell .monaco-inputbox.warning.synthetic-focus,
.monaco-shell .monaco-inputbox.error.synthetic-focus,
B
Benjamin Pasero 已提交
134 135 136
.monaco-shell .monaco-inputbox.info input[type="text"]:focus,
.monaco-shell .monaco-inputbox.warning input[type="text"]:focus,
.monaco-shell .monaco-inputbox.error input[type="text"]:focus {
137
	outline: 0 !important; /* outline is not going well with decoration */
B
Benjamin Pasero 已提交
138 139
}

J
Joao Moreno 已提交
140 141
.monaco-shell .monaco-tree.focused:focus,
.monaco-shell .monaco-list:focus {
142
	outline: 0 !important; /* tree indicates focus not via outline but through the focused item */
B
Benjamin Pasero 已提交
143
}