From 27fd00d05ba884d4c115e09fa21f40efe18bd7e6 Mon Sep 17 00:00:00 2001 From: meganrogge Date: Tue, 23 Aug 2022 15:01:28 -0700 Subject: [PATCH] fix #158917 --- .../contrib/terminal/browser/media/xterm.css | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/src/vs/workbench/contrib/terminal/browser/media/xterm.css b/src/vs/workbench/contrib/terminal/browser/media/xterm.css index a7292928fbbbc..174174dea43c2 100644 --- a/src/vs/workbench/contrib/terminal/browser/media/xterm.css +++ b/src/vs/workbench/contrib/terminal/browser/media/xterm.css @@ -55,10 +55,7 @@ .xterm .xterm-helpers { position: absolute; top: 0; - /** - * The z-index of the helpers must be higher than the canvases in order for - * IMEs to appear on top. - */ + /* The z-index of the helpers must be higher than the canvases in order for IMEs to appear on top. */ z-index: 5; } @@ -167,10 +164,26 @@ opacity: 0.5; } -.xterm-underline { +.xterm-underline-1 { text-decoration: underline; } +.xterm-underline-2 { + text-decoration: double underline; +} + +.xterm-underline-3 { + text-decoration: wavy underline; +} + +.xterm-underline-4 { + text-decoration: dotted underline; +} + +.xterm-underline-5 { + text-decoration: dashed underline; +} + .xterm-strikethrough { text-decoration: line-through; }