Skip to content

Commit e5f0077

Browse files
author
Benjamin Pasero
committed
css 💄
1 parent 1dabb23 commit e5f0077

4 files changed

Lines changed: 2 additions & 12 deletions

File tree

extensions/markdown-language-features/media/markdown.css

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,6 @@ h1, h2, h3 {
129129
font-weight: normal;
130130
}
131131

132-
h1 code,
133-
h2 code,
134-
h3 code,
135-
h4 code,
136-
h5 code,
137-
h6 code {
138-
line-height: auto;
139-
}
140-
141132
table {
142133
border-collapse: collapse;
143134
}

src/vs/base/browser/ui/inputbox/inputBox.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
display: block;
99
padding: 0;
1010
box-sizing: border-box;
11-
line-height: auto !important;
1211

1312
/* Customizable */
1413
font-size: inherit;

src/vs/workbench/browser/parts/editor/tabsTitleControl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
12311231

12321232
// High Contrast Border Color for Editor Actions
12331233
const contrastBorderColor = theme.getColor(contrastBorder);
1234-
if (contrastBorder) {
1234+
if (contrastBorderColor) {
12351235
collector.addRule(`
12361236
.monaco-workbench .part.editor > .content .editor-group-container > .title .editor-actions {
12371237
outline: 1px solid ${contrastBorderColor}

src/vs/workbench/contrib/preferences/browser/keybindingsEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
11511151
collector.addRule(`.keybindings-editor > .keybindings-body > .keybindings-list-container .monaco-list:focus .monaco-list-row.selected > .column .monaco-keybinding-key { color: ${listActiveSelectionForegroundColor}; }`);
11521152
}
11531153
const listInactiveFocusAndSelectionForegroundColor = theme.getColor(listInactiveSelectionForeground);
1154-
if (listActiveSelectionForegroundColor) {
1154+
if (listInactiveFocusAndSelectionForegroundColor) {
11551155
collector.addRule(`.keybindings-editor > .keybindings-body > .keybindings-list-container .monaco-list .monaco-list-row.selected > .column .monaco-keybinding-key { color: ${listInactiveFocusAndSelectionForegroundColor}; }`);
11561156
}
11571157
const listHoverForegroundColor = theme.getColor(listHoverForeground);

0 commit comments

Comments
 (0)