Skip to content

Commit

Permalink
Chat: update at-mention input token color (#3501)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix committed Mar 22, 2024
1 parent 9a98798 commit 8a45976
Showing 1 changed file with 22 additions and 1 deletion.
@@ -1,3 +1,24 @@
.context-item-mention-node {
background-color: var(--vscode-list-dropBackground);
color: var(--link-foreground);
position: relative;

}

.context-item-mention-node::before {
content: '';
background-color: var(--link-foreground);
border-radius: 3px;
outline: 1px solid var(--link-foreground);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0.2;
pointer-events: none
}

body[data-vscode-theme-kind='vscode-high-contrast-light'] .context-item-mention-node {
background-color: var(--code-background);
color: var(--code-foreground);
}

0 comments on commit 8a45976

Please sign in to comment.