File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 241
241
color : var (--vscode-textLink-activeForeground );
242
242
}
243
243
244
+ ol li ::before ,
244
245
ul li ::before {
245
- content : "•" ;
246
246
margin-right : 5px ;
247
+ }
248
+
249
+ ol , ul {
250
+ padding-left : 11px ;
251
+ }
252
+
253
+ ol {
254
+ list-style-type : decimal;
255
+ }
256
+
257
+ ul {
258
+ list-style-type : disc;
247
259
}
Original file line number Diff line number Diff line change @@ -398,8 +398,10 @@ class Mentionify {
398
398
const modelResponse = document . querySelectorAll ( "div.user-gemini-pro" ) ;
399
399
modelResponse . forEach ( ( _modelResponse ) => {
400
400
const pBlocks = _modelResponse . querySelectorAll ( "p" ) ;
401
- pBlocks . forEach ( ( _pBlock ) => {
402
- _pBlock . classList . add ( "my-3" ) ;
401
+ pBlocks . forEach ( ( _pBlock , index ) => {
402
+ if ( index !== 0 ) {
403
+ _pBlock . classList . add ( "my-3" ) ;
404
+ }
403
405
} ) ;
404
406
} ) ;
405
407
}
You can’t perform that action at this time.
0 commit comments