This commit is contained in:
Benjamin Pasero 2019-10-25 16:41:51 +02:00
parent 1dabb23c3c
commit e5f0077f40
4 changed files with 2 additions and 12 deletions

View file

@ -129,15 +129,6 @@ h1, h2, h3 {
font-weight: normal;
}
h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
line-height: auto;
}
table {
border-collapse: collapse;
}

View file

@ -8,7 +8,6 @@
display: block;
padding: 0;
box-sizing: border-box;
line-height: auto !important;
/* Customizable */
font-size: inherit;

View file

@ -1231,7 +1231,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
// High Contrast Border Color for Editor Actions
const contrastBorderColor = theme.getColor(contrastBorder);
if (contrastBorder) {
if (contrastBorderColor) {
collector.addRule(`
.monaco-workbench .part.editor > .content .editor-group-container > .title .editor-actions {
outline: 1px solid ${contrastBorderColor}

View file

@ -1151,7 +1151,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
collector.addRule(`.keybindings-editor > .keybindings-body > .keybindings-list-container .monaco-list:focus .monaco-list-row.selected > .column .monaco-keybinding-key { color: ${listActiveSelectionForegroundColor}; }`);
}
const listInactiveFocusAndSelectionForegroundColor = theme.getColor(listInactiveSelectionForeground);
if (listActiveSelectionForegroundColor) {
if (listInactiveFocusAndSelectionForegroundColor) {
collector.addRule(`.keybindings-editor > .keybindings-body > .keybindings-list-container .monaco-list .monaco-list-row.selected > .column .monaco-keybinding-key { color: ${listInactiveFocusAndSelectionForegroundColor}; }`);
}
const listHoverForegroundColor = theme.getColor(listHoverForeground);