Skip to content

Commit

Permalink
Update xterm.css
Browse files Browse the repository at this point in the history
Fixes #181242
  • Loading branch information
Tyriar committed May 31, 2023
1 parent 207c1b9 commit 26378c2
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions src/vs/workbench/contrib/terminal/browser/media/xterm.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@
}

.xterm-dim {
opacity: 0.5;
/* Dim should not apply to background, so the opacity of the foreground color is applied
* explicitly in the generated class and reset to 1 here */
opacity: 1 !important;
}

.xterm-underline-1 {
Expand All @@ -188,6 +190,30 @@
text-decoration: dashed underline;
}

.xterm-overline {
text-decoration: overline;
}

.xterm-overline.xterm-underline-1 {
text-decoration: overline underline;
}

.xterm-overline.xterm-underline-2 {
text-decoration: overline double underline;
}

.xterm-overline.xterm-underline-3 {
text-decoration: overline wavy underline;
}

.xterm-overline.xterm-underline-4 {
text-decoration: overline dotted underline;
}

.xterm-overline.xterm-underline-5 {
text-decoration: overline dashed underline;
}

.xterm-strikethrough {
text-decoration: line-through;
}
Expand All @@ -197,8 +223,12 @@
position: absolute;
}

.xterm-decoration-overview-ruler {
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
z-index: 7;
}

.xterm-decoration-overview-ruler {
z-index: 8;
position: absolute;
top: 0;
right: 0;
Expand Down

0 comments on commit 26378c2

Please sign in to comment.