Update reply text area styling to match comment box

This commit is contained in:
Miguel Solorio 2018-08-16 10:25:39 -07:00
parent 8eeeed30d5
commit 1094f6b1b5
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ import { EmbeddedCodeEditorWidget } from 'vs/editor/browser/widget/embeddedCodeE
import { IEditorContribution } from 'vs/editor/common/editorCommon'; import { IEditorContribution } from 'vs/editor/common/editorCommon';
import { IRange } from 'vs/editor/common/core/range'; import { IRange } from 'vs/editor/common/core/range';
import * as modes from 'vs/editor/common/modes'; 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 { IContextKey, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey';
import { ServicesAccessor, IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { ServicesAccessor, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; 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);
if (monacoEditorBackground) { if (monacoEditorBackground) {
collector.addRule( collector.addRule(
`.monaco-editor .review-widget .body .comment-form .review-thread-reply-button {` + `.monaco-editor .review-widget .body .comment-form .review-thread-reply-button {` +

View file

@ -168,7 +168,7 @@
display: block; display: block;
width: 100%; width: 100%;
resize: vertical; resize: vertical;
border-radius: 3px; border-radius: 0;
box-sizing: border-box; box-sizing: border-box;
padding: 6px 12px; padding: 6px 12px;
font-weight: 600; font-weight: 600;