Skip to content

Commit

Permalink
update xterm.css (#158989)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Aug 23, 2022
1 parent f00fde0 commit ea09b02
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/vs/workbench/contrib/terminal/browser/media/xterm.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit ea09b02

Please sign in to comment.