-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mod: update fetch space list logic * feat: add schema in console * mod: remove * feat: add editor hightlight * mod: update monaco editor * mod: update drawer * feat: add / history provider * feat: support running select rows * mod: code review --------- Co-authored-by: Nut He <[email protected]>
- Loading branch information
1 parent
4872aeb
commit 77a6d46
Showing
27 changed files
with
1,751 additions
and
467 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
:global { | ||
/* padding between the gutter and code */ | ||
.monaco-editor .view-line { | ||
padding-left: 5px; | ||
} | ||
|
||
/* fix cursor location */ | ||
.monaco-editor .cursor { | ||
margin-left: 5px; | ||
} | ||
|
||
/* fix highlighted text selection */ | ||
.monaco-editor .selectionHighlight { | ||
margin-left: 5px; | ||
} | ||
|
||
/* fix highlighted brackets */ | ||
.monaco-editor .bracket-match { | ||
margin-left: 5px; | ||
} | ||
|
||
/* fix multiline text selection */ | ||
.monaco-editor .cslr.selected-text { | ||
margin-left: 5px; | ||
} | ||
|
||
/* fix multiline text selection */ | ||
.monaco-editor .bottom-left-radius, .monaco-editor .top-left-radius { | ||
margin-left: 5px; | ||
} | ||
|
||
} |
Oops, something went wrong.