Skip to content

Commit 83b7504

Browse files
committed
foldBackground needs transparency. Fixes microsoft#91034
1 parent 66f525f commit 83b7504

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/editor/contrib/folding/folding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ for (let i = 1; i <= 7; i++) {
885885
);
886886
}
887887

888-
export const foldBackgroundBackground = registerColor('editor.foldBackground', { light: transparent(editorSelectionBackground, 0.3), dark: transparent(editorSelectionBackground, 0.3), hc: null }, nls.localize('foldBackgroundBackground', "Background color behind folded ranges."));
888+
export const foldBackgroundBackground = registerColor('editor.foldBackground', { light: transparent(editorSelectionBackground, 0.3), dark: transparent(editorSelectionBackground, 0.3), hc: null }, nls.localize('foldBackgroundBackground', "Background color behind folded ranges. The color must not be opaque so as not to hide underlying decorations."), true);
889889

890890
registerThemingParticipant((theme, collector) => {
891891
const foldBackground = theme.getColor(foldBackgroundBackground);

0 commit comments

Comments
 (0)