debug.contribution.css 11.5 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

/* Activity Bar */
.monaco-workbench > .activitybar .monaco-action-bar .action-label.debug {
	/* Inline icon to prevent slow loading on startup (original: debug.svg) */
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojRjZGNkY2O30gLmljb24td2hpdGV7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTMyIDMySDBWMGgzMnYzMnoiIGlkPSJjYW52YXMiLz48ZyBpZD0iaWNvbkJnIj48cGF0aCBjbGFzcz0iaWNvbi13aGl0ZSIgZD0iTTE3IDE5LjQ4OHY0LjI0OGMwIC40NjIuMDkgMS4yNjQtLjM3MyAxLjI2NEgxNXYtMWgxdi0zLjE5bC0uMTczLS4xOGMtMS40NTMgMS4yMDUtMy41MjggMS4yNDgtNC42Ny4xMDhDMTAgMTkuNTc4IDEwLjExOCAxOCAxMS4zNzYgMTZIOHYxSDd2LTEuNjI3QzcgMTQuOTEgNy44MDIgMTUgOC4yNjQgMTVoNC4xMDVMMTcgMTkuNDg4ek0xNCA5aC0xVjhoMS45NTVjLjQ2IDAgMS4wNDUuMjIgMS4wNDUuNjgydjMuMzQ1bC43MzYuODc1Yy4xOC0uOTczLjg5LTEuNzEgMS45MTQtMS43MS4xNDMgMCAuMzUuMDE0LjM1LjA0VjloMXYyLjYxOGMwIC4xMTcuMjY1LjM4Mi4zODIuMzgySDIzdjFoLTIuMjMzYy4wMjcgMCAuMDQyLjE1NC4wNDIuMjk4IDAgMS4wMjUtLjc0IDEuNzUzLTEuNzEyIDEuOTMybC44NzUuNzdIMjMuMzE4Yy40NjIgMCAuNjgyLjU4My42ODIgMS4wNDVWMTloLTF2LTFoLTIuNTJMMTQgMTEuNjk4Vjl6TTE2IDRDOS4zNzMgNCA0IDkuMzczIDQgMTZzNS4zNzMgMTIgMTIgMTIgMTItNS4zNzMgMTItMTJTMjIuNjI3IDQgMTYgNHptMTAgMTJjMCAyLjM5Ny0uODUgNC42LTIuMjYyIDYuMzI0TDkuNjc2IDguMjYyQzExLjQgNi44NSAxMy42MDIgNiAxNiA2YzUuNTE0IDAgMTAgNC40ODYgMTAgMTB6TTYgMTZjMC0yLjM5OC44NS00LjYgMi4yNjItNi4zMjRMMjIuMzI0IDIzLjc0QzIwLjYgMjUuMTUgMTguMzk3IDI2IDE2IDI2Yy01LjUxNCAwLTEwLTQuNDg2LTEwLTEweiIvPjwvZz48L3N2Zz4=');
}

.monaco-editor .debug-top-stack-frame-line {
	background: rgba(255, 255, 0, 0.35);
}

.monaco-editor .debug-top-stack-frame-exception-line {
	background: rgba(242, 222, 222, 0.7);
}

.monaco-editor .debug-top-stack-frame-column {
	background: rgba(255, 255, 0, 0.7);
}

F
Francois Valdy 已提交
24
.monaco-editor .debug-focused-stack-frame-line {
E
Erich Gamma 已提交
25 26 27 28
	background: rgba(206, 231, 206, 0.45);
}

.monaco-editor .debug-breakpoint-glyph-hint {
29
	background: url('breakpoint-hint.svg') center center no-repeat;
E
Erich Gamma 已提交
30 31 32 33 34 35
}

.monaco-editor .debug-breakpoint-glyph-disabled {
	background: url('breakpoint-disabled.svg') center center no-repeat;
}

36 37
.monaco-editor .debug-breakpoint-glyph-unverified {
	background: url('breakpoint-unverified.svg') center center no-repeat;
I
isidor 已提交
38 39
}

E
Erich Gamma 已提交
40 41 42 43 44 45 46 47 48 49 50 51
.monaco-editor .debug-top-stack-frame-glyph {
	background: url('current-arrow.svg') center center no-repeat;
}

.monaco-editor .debug-focused-stack-frame-glyph {
	background: url('stackframe-arrow.svg') center center no-repeat;
}

.monaco-editor .debug-breakpoint-glyph {
	background: url('breakpoint.svg') center center no-repeat;
}

52 53 54 55
.monaco-editor .debug-breakpoint-conditional-glyph {
	background: url('breakpoint-conditional.svg') center center no-repeat;
}

56
.monaco-editor .debug-top-stack-frame-glyph.debug-breakpoint-glyph {
E
Erich Gamma 已提交
57 58 59
	background: url('current-and-breakpoint.svg') center center no-repeat;
}

60
.monaco-editor .debug-focused-stack-frame-glyph.debug-breakpoint-glyph {
E
Erich Gamma 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74
	background: url('stackframe-and-breakpoint.svg') center center no-repeat;
}

/* Status */
.monaco-workbench.debugging > .part.statusbar {
	background: #CC6633 !important;
}

/* Actionbar actions */

.monaco-workbench .debug-action.configure {
	background: url('configure.svg') center center no-repeat;
}

I
isidor 已提交
75
.monaco-workbench .debug-action.toggle-repl {
E
Erich Gamma 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	background: url('repl.svg') center center no-repeat;
}

.monaco-workbench .debug-action.step-over {
	background: url('step-over.svg') center center no-repeat;
}

.monaco-workbench .debug-action.step-into {
	background: url('step-into.svg') center center no-repeat;
}

.monaco-workbench .debug-action.step-out {
	background: url('step-out.svg') center center no-repeat;
}

.monaco-workbench .debug-action.continue {
	background: url('continue.svg') center center no-repeat;
}

.monaco-workbench .debug-action.start {
	background: url('continue.svg') center center no-repeat;
}

.monaco-workbench .debug-action.restart {
	background: url('restart.svg') center center no-repeat;
}

.monaco-workbench .debug-action.pause {
	background: url('pause.svg') center center no-repeat;
}

.monaco-workbench .debug-action.attach {
	background: url('attach.svg') center center no-repeat;
}

.monaco-workbench .debug-action.stop {
	background: url('stop.svg') center center no-repeat;
}

.monaco-workbench .debug-action.clear-repl {
	background: url('clear-repl.svg') center center no-repeat;
}

/* Actions Widget */

.monaco-workbench .debug-actions-widget {
	background-color: #F3F3F3;
	box-shadow: 0 2px 8px #A8A8A8;
	position: absolute;
	z-index: 200;
	height: 32px;
	padding-top: 3px;
	left: 50%;
	margin-left: -96px;
}

.monaco-workbench  .debug-actions-widget > .monaco-action-bar .action-label {
	width: 32px;
	height: 32px;
	margin-right: 0;
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Expressions */

.monaco-workbench .monaco-tree-row .expression {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: pre;
	font-family: Monaco, Menlo, Consolas, "Droid Sans Mono", "Inconsolata", "Courier New", monospace, "Droid Sans Fallback";
}

.monaco-workbench .monaco-tree-row .expression.mac {
	font-size: 11px;
}

.monaco-workbench .monaco-tree-row .expression.win-linux {
	font-size: 13px;
}

.monaco-workbench .monaco-tree-row .expression .value {
	margin-left: 6px;
}

.monaco-workbench .monaco-tree-row:not(.selected) .expression .name {
	color: #9B46B0;
}

.monaco-workbench > .monaco-tree-row:not(.selected) .expression .value {
	color: rgba(108, 108, 108, 0.8);
}

170
.monaco-workbench .monaco-tree-row .expression .unavailable {
E
Erich Gamma 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
	font-style: italic;
}

.monaco-workbench .monaco-tree-row:not(.selected) .expression .error {
	color: #E51400;
}

.monaco-workbench .monaco-tree-row:not(.selected) .expression .value.number {
	color: #09885A;
}

.monaco-workbench .monaco-tree-row:not(.selected) .expression .value.boolean {
	color: #0000FF;
}

.monaco-workbench .monaco-tree-row:not(.selected) .expression .value.string {
	color: #A31515;
}

.monaco-workbench.vs-dark  > .monaco-tree-row:not(.selected) .expression .value {
	color: rgba(204, 204, 204, 0.6);
}

.monaco-workbench.vs-dark  .monaco-tree-row:not(.selected) .expression .error {
	color: #F48771;
}

.monaco-workbench.vs-dark  .monaco-tree-row:not(.selected) .expression .value.number {
	color: #B5CEA8;
}

.monaco-workbench.vs-dark  .monaco-tree-row:not(.selected) .expression .value.boolean {
	color: #4E94CE;
}

.monaco-workbench.vs-dark  .monaco-tree-row:not(.selected) .expression .value.string {
	color: #CE9178;
}

.monaco-workbench.hc-black .monaco-tree-row:not(.selected) .expression .error {
	color: #F48771;
}

/* Dark theme */

.monaco-workbench.vs-dark .monaco-tree-row:not(.selected) .expression .name {
	color: #C586C0;
}

F
Francois Valdy 已提交
220
.monaco-editor.vs-dark .debug-focused-stack-frame-line {
E
Erich Gamma 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	background: rgba(122, 189, 122, 0.3);
}

.monaco-editor.vs-dark .debug-top-stack-frame-line {
	background: rgba(255, 255, 0, 0.20);
}

.monaco-editor.vs-dark .debug-top-stack-frame-exception-line {
	background-color: rgba(90, 29, 29, 0.6);
}

.monaco-editor.vs-dark .debug-top-stack-frame-column {
	background: rgba(255, 255, 0, 0.15);
}

I
isidor 已提交
236 237 238 239
.monaco-editor.vs-dark .debug-breakpoint-glyph {
	background: url('breakpoint-dark.svg') center center no-repeat;
}

240 241 242 243
.monaco-editor.vs-dark .debug-breakpoint-conditional-glyph {
	background: url('breakpoint-conditional-dark.svg') center center no-repeat;
}

E
Erich Gamma 已提交
244 245 246 247
.monaco-editor.vs-dark .debug-breakpoint-glyph-disabled {
	background: url('breakpoint-disabled-dark.svg') center center no-repeat;
}

248 249 250 251
.monaco-editor.vs-dark .debug-breakpoint-glyph-unverified {
	background: url('breakpoint-unverified-dark.svg') center center no-repeat;
}

E
Erich Gamma 已提交
252 253 254 255 256 257 258 259
.monaco-editor.vs-dark .debug-top-stack-frame-glyph {
	background: url('current-arrow-dark.svg') center center no-repeat;
}

.monaco-editor.vs-dark .debug-focused-stack-frame-glyph {
	background: url('stackframe-arrow-dark.svg') center center no-repeat;
}

260
.monaco-editor.vs-dark .debug-top-stack-frame-glyph.debug-breakpoint-glyph {
E
Erich Gamma 已提交
261 262 263
	background: url('current-and-breakpoint-dark.svg') center center no-repeat;
}

264
.monaco-editor.vs-dark .debug-focused-stack-frame-glyph.debug-breakpoint-glyph {
E
Erich Gamma 已提交
265 266 267 268 269 270 271
	background: url('stackframe-and-breakpoint-dark.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.configure {
	background: url('configure-inverse.svg') center center no-repeat;
}

I
isidor 已提交
272
.monaco-workbench.vs-dark .debug-action.toggle-repl {
E
Erich Gamma 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
	background: url('repl-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.step-over {
	background: url('step-over-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.step-into {
	background: url('step-into-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.step-out {
	background: url('step-out-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.continue {
	background: url('continue-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.start {
	background: url('continue-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.restart {
	background: url('restart-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.pause {
	background: url('pause-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.stop {
	background: url('stop-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-action.clear-repl {
	background: url('clear-repl-inverse.svg') center center no-repeat;
}

.monaco-workbench.vs-dark .debug-actions-widget {
	background-color: #333;
	box-shadow: 0 2px 8px #000;
}

/* High Contrast Theming */

.monaco-workbench.hc-black .monaco-tree-row:not(.selected) .expression .name {
	color: inherit;
}

.monaco-workbench.hc-black > .activitybar .monaco-action-bar .action-label.debug:before {
	content: url('debug.svg');
}

.monaco-workbench.hc-black .debug-action {
	background: none;
}

.monaco-workbench.hc-black .debug-action:before {
	position: absolute;
	top: 12px;
	left: 8px;
	height: 16px;
	width: 16px;
}

I
isidor 已提交
339
.monaco-workbench.hc-black .debug-action.toggle-repl:before {
E
Erich Gamma 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
	content: url('repl-inverse.svg');
}

.monaco-workbench.hc-black .debug-actions-widget {
	background-color: #333;
	box-shadow: 0 2px 8px #000;
}

.monaco-workbench.hc-black .debug-action.step-over {
	background: url('step-over-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.step-into {
	background: url('step-into-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.step-out {
	background: url('step-out-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.continue {
	background: url('continue-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.start {
	background: url('continue-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.restart {
	background: url('restart-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.pause {
	background: url('pause-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.stop {
	background: url('stop-inverse.svg') center center no-repeat;
}

.monaco-workbench.hc-black .debug-action.clear-repl {
	background: url('clear-repl-inverse.svg') center center no-repeat;
}