Skip to content

Commit

Permalink
fix: debug hover no background (#3532)
Browse files Browse the repository at this point in the history
  • Loading branch information
life2015 authored Apr 16, 2024
1 parent 1da9760 commit cc8c8aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/core-browser/src/style/monaco-override.less
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@

.debug-hover-widget {
position: absolute;
margin-top: -1px;
z-index: 50;
background-color: var(--vscode-editorHoverWidget-background);
border: 1px solid var(--vscode-editorHoverWidget-border);
color: var(--vscode-editorHoverWidget-foreground);
}

.decorationsOverviewRuler {
Expand Down
1 change: 0 additions & 1 deletion packages/debug/src/browser/editor/debug-hover.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
line-height: 21px;
letter-spacing: 0px;
background-color: var(--editor-background);
border: 1px solid rgb(79, 180, 216);
position: relative;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@
flex-shrink: 0;
font-size: 16px;
color: var(--foreground);

&:before {
transition: transform 0.2s ease-in-out;
font-size: 14px;
}

&.mod_collapsed {
&:before {
display: block;
Expand Down

0 comments on commit cc8c8aa

Please sign in to comment.