File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,11 @@ body button.checkedOut {
155
155
background-color : transparent;
156
156
}
157
157
158
+ body button .secondary ,
159
+ body button .secondary : hover {
160
+ -webkit-filter : grayscale (100% );
161
+ }
162
+
158
163
body button svg {
159
164
fill : var (--vscode-button-foreground );
160
165
margin-right : 6px ;
Original file line number Diff line number Diff line change @@ -244,9 +244,9 @@ function updateCheckoutButton(isCheckedOut: boolean) {
244
244
function setTextArea ( ) {
245
245
document . getElementById ( 'comment-form' ) ! . innerHTML = `<textarea id="${ ElementIds . CommentTextArea } "></textarea>
246
246
<div class="form-actions">
247
- <button id="${ ElementIds . Close } ">Close Pull Request</button>
248
- <button id="${ ElementIds . RequestChanges } " disabled="true">Request Changes</button>
249
- <button id="${ ElementIds . Approve } ">Approve</button>
247
+ <button id="${ ElementIds . Close } " class="secondary" >Close Pull Request</button>
248
+ <button id="${ ElementIds . RequestChanges } " disabled="true" class="secondary" >Request Changes</button>
249
+ <button id="${ ElementIds . Approve } " class="secondary" >Approve</button>
250
250
<button class="reply-button" id="${ ElementIds . Reply } " disabled="true">Comment</button>
251
251
</div>` ;
252
252
You can’t perform that action at this time.
0 commit comments