Refresh master with initial release/0.24 snapshot (#332)

* Initial port of release/0.24 source code

* Fix additional headers

* Fix a typo in launch.json
This commit is contained in:
Karl Burtram
2017-12-15 15:38:57 -08:00
committed by GitHub
parent 271b3a0b82
commit 6ad0df0e3e
7118 changed files with 107999 additions and 56466 deletions

View File

@@ -102,6 +102,21 @@
box-sizing: border-box;
}
/* Debug status */
/* A very precise css rule to overwrite the display set in statusbar.css */
.monaco-workbench > .part.statusbar > .statusbar-item > .debug-statusbar-item > a:not([disabled]):not(.disabled) {
display: flex;
padding: 0 5px 0 5px;
}
.monaco-workbench .part.statusbar .debug-statusbar-item .icon {
-webkit-mask: url('continue.svg') no-repeat 50% 50%;
-webkit-mask-size: 18px;
display: inline-block;
padding-right: 2px;
width: 16px;
}
/* Expressions */
.monaco-workbench .monaco-tree-row .expression {

View File

@@ -200,6 +200,7 @@
overflow: hidden;
text-overflow: ellipsis;
padding-right: 0.8em;
display: flex;
}
.debug-viewlet .debug-call-stack .stack-frame.label {
@@ -207,6 +208,12 @@
font-style: italic;
}
.debug-viewlet .debug-call-stack .stack-frame .label {
flex: 1;
flex-shrink: 0;
min-width: fit-content;
}
.debug-viewlet .debug-call-stack .stack-frame.subtle {
font-style: italic;
}
@@ -216,7 +223,10 @@
}
.debug-viewlet .debug-call-stack .stack-frame > .file {
float: right;
display: flex;
overflow: hidden;
flex-wrap: wrap;
justify-content: flex-end;
}
.debug-viewlet .debug-call-stack .stack-frame > .file > .line-number.unavailable {
@@ -227,6 +237,11 @@
color: rgba(108, 108, 108, 0.8);
}
.debug-viewlet .debug-call-stack .stack-frame > .file > .file-name {
overflow: hidden;
text-overflow: ellipsis;
}
.vs-dark .debug-viewlet .debug-call-stack > .monaco-tree-row:not(.selected) .stack-frame > .file {
color: rgba(204, 204, 204, 0.6);
}

View File

@@ -36,6 +36,22 @@
font-size: 12px;
}
.monaco-workbench .repl .repl-tree .monaco-tree-row .output.expression.value-and-source {
display: flex;
}
.monaco-workbench .repl .repl-tree .monaco-tree-row .output.expression.value-and-source .value {
flex: 1;
}
.monaco-workbench .repl .repl-tree .monaco-tree-row .output.expression.value-and-source .source {
margin-left: 4px;
margin-right: 8px;
cursor: pointer;
text-decoration: underline;
}
.monaco-workbench.windows .repl .repl-tree .monaco-tree-row .input.expression,
.monaco-workbench.windows .repl .repl-tree .monaco-tree-row .output.expression,
.monaco-workbench.linux .repl .repl-tree .monaco-tree-row .input.expression,