-
Notifications
You must be signed in to change notification settings - Fork 29.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update review comment styles #56595
Update review comment styles #56595
Changes from 4 commits
8eeeed3
1094f6b
f28979f
aec8282
1b61c2a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ import { EmbeddedCodeEditorWidget } from 'vs/editor/browser/widget/embeddedCodeE | |
import { IEditorContribution } from 'vs/editor/common/editorCommon'; | ||
import { IRange } from 'vs/editor/common/core/range'; | ||
import * as modes from 'vs/editor/common/modes'; | ||
import { peekViewEditorBackground, peekViewResultsBackground, peekViewResultsSelectionBackground } from 'vs/editor/contrib/referenceSearch/referencesWidget'; | ||
import { peekViewEditorBackground, peekViewResultsBackground, peekViewResultsSelectionBackground, peekViewTitleBackground } from 'vs/editor/contrib/referenceSearch/referencesWidget'; | ||
import { IContextKey, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; | ||
import { ServicesAccessor, IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; | ||
import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; | ||
|
@@ -602,7 +602,7 @@ registerThemingParticipant((theme, collector) => { | |
`}`); | ||
} | ||
|
||
let monacoEditorBackground = theme.getColor(peekViewEditorBackground); | ||
let monacoEditorBackground = theme.getColor(peekViewTitleBackground); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks better on most themes, but on Quiet Light it matches the rest of the background. Should we use something else like the input background? Or do you think it looks ok on Quiet Light? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That looks good to me 👍 |
||
if (monacoEditorBackground) { | ||
collector.addRule( | ||
`.monaco-editor .review-widget .body .comment-form .review-thread-reply-button {` + | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like
peekViewEditorBackground
is unusedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed