3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
+ : root {
7
+ --border-color : var (--vscode-notifications-border );
8
+ }
9
+
6
10
.title {
7
11
display : flex;
8
12
align-items : flex-start;
9
13
margin-top : 20px ;
10
- border-bottom : 1px solid var (--vscode-tab-inactiveBackground );
14
+ border-bottom : 1px solid var (--border-color );
11
15
}
12
16
13
17
# title : empty {
@@ -85,7 +89,7 @@ body .comment-container:last-child .comment {
85
89
display: block;
86
90
width: 2px;
87
91
content: "";
88
- background-color: var(--vscode-tab-inactiveBackground );
92
+ background-color: var(--border-color );
89
93
} */
90
94
91
95
body .review-comment .review-comment-header {
@@ -186,7 +190,7 @@ body button.checkedOut svg {
186
190
align-items : center;
187
191
margin-top : 8px ;
188
192
padding-bottom : 16px ;
189
- border-bottom : 1px solid var (--vscode-tab-inactiveBackground );
193
+ border-bottom : 1px solid var (--border-color );
190
194
}
191
195
192
196
.subtitle .avatar {
@@ -249,11 +253,11 @@ body .overview-title button {
249
253
.comment-container {
250
254
position : relative;
251
255
padding : 20px 0 ;
252
- border-top : 1px solid var (--vscode-tab-inactiveBackground );
256
+ border-top : 1px solid var (--border-color );
253
257
}
254
258
255
259
.comment-container : last-of-type {
256
- border-bottom : 1px solid var (--vscode-tab-inactiveBackground );
260
+ border-bottom : 1px solid var (--border-color );
257
261
}
258
262
259
263
.comment-container [data-type = "commit" ] {
@@ -265,6 +269,25 @@ body .overview-title button {
265
269
border-top : none;
266
270
}
267
271
272
+ .comment-body div [data-type = "review-comment" ] {
273
+ padding : 0 20px ;
274
+ border-right : 1px solid var (--vscode-notifications-background );
275
+ border-left : 1px solid var (--vscode-notifications-background );
276
+ border-bottom : 1px solid var (--vscode-notifications-background );
277
+ }
278
+
279
+ .comment-body div [data-type = "review-comment" ] .comment-container {
280
+ padding : 12px 0 ;
281
+ }
282
+
283
+ .comment-body div [data-type = "review-comment" ] .comment-container : last-child {
284
+ border-bottom : none;
285
+ }
286
+
287
+ .comment-body div [data-type = "review-comment" ] .comment-container : last-child .comment {
288
+ padding-bottom : 0 ;
289
+ }
290
+
268
291
body .comment-form {
269
292
padding : 20px 0 10px ;
270
293
}
@@ -318,11 +341,30 @@ body .comment-form .form-actions button {
318
341
content : "No description provided."
319
342
}
320
343
344
+ blockquote {
345
+ display : block;
346
+ flex-direction : column;
347
+ margin : 8px 0 ;
348
+ padding : 8px 12px ;
349
+ border-left-width : 5px ;
350
+ border-left-style : solid;
351
+ }
352
+
353
+ blockquote p {
354
+ margin : 8px 0 ;
355
+ }
356
+
357
+ blockquote p : first-child {
358
+ margin-top : 0 ;
359
+ }
360
+
361
+ blockquote p : last-child {
362
+ margin-bottom : 0 ;
363
+ }
321
364
322
365
.comment-body img {
323
366
max-width : 100% ;
324
367
max-height : 100% ;
325
- margin-top : 8px ;
326
368
display : block;
327
369
}
328
370
@@ -389,13 +431,6 @@ body .comment-form .form-actions button {
389
431
border-top : 1px solid;
390
432
}
391
433
392
- .comment-body blockquote {
393
- margin : 0 7px 0 5px ;
394
- padding : 0 16px 0 10px ;
395
- border-left-width : 5px ;
396
- border-left-style : solid;
397
- }
398
-
399
434
.comment-body code {
400
435
font-family : Menlo, Monaco, Consolas, "Droid Sans Mono" , "Courier New" , monospace, "Droid Sans Fallback" ;
401
436
}
@@ -463,12 +498,16 @@ body .comment-form .form-actions button {
463
498
}
464
499
465
500
.diff {
466
- margin : 8 px 0 ;
501
+ margin : 40 px 0 0 px ;
467
502
border : 1px solid var (--vscode-notifications-background ) !important ;
468
503
}
469
504
505
+ .diff : first-of-type {
506
+ margin-top : 8px ;
507
+ }
508
+
470
509
.diff .diffHeader {
471
- padding : 2 px 12px ;
510
+ padding : 6 px 12px ;
472
511
line-height : 1.5 ;
473
512
border-bottom : solid 1px var (--vscode-notifications-background );
474
513
background-color : var (--vscode-editorGroupHeader-tabsBackground );
0 commit comments