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 @@ -201,9 +201,9 @@ function updateCheckoutButton(isCheckedOut: boolean) {
201
201
function setTextArea ( ) {
202
202
document . getElementById ( 'comment-form' ) ! . innerHTML = `<textarea id="${ ElementIds . CommentTextArea } "></textarea>
203
203
<div class="form-actions">
204
- <button id="${ ElementIds . Close } ">Close Pull Request</button>
205
- <button id="${ ElementIds . RequestChanges } " disabled="true">Request Changes</button>
206
- <button id="${ ElementIds . Approve } ">Approve</button>
204
+ <button id="${ ElementIds . Close } " class="secondary" >Close Pull Request</button>
205
+ <button id="${ ElementIds . RequestChanges } " disabled="true" class="secondary" >Request Changes</button>
206
+ <button id="${ ElementIds . Approve } " class="secondary" >Approve</button>
207
207
<button class="reply-button" id="${ ElementIds . Reply } " disabled="true">Comment</button>
208
208
</div>` ;
209
209
You can’t perform that action at this time.
0 commit comments