-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow style overrides for inlay_hints.css (#2232)
* Move inlay hint CSS to separate file * Add paragraph in docs * Addendum * reorder sections I just reordered the sections from: ``` ... ... ... ... ``` to: ``` ... ... ... ... ``` I think the Keyboard shortcuts are more important than the styling of hover and inlay hints. --------- Co-authored-by: Предраг Николић <idmpepe@gmail.com>
- Loading branch information
1 parent
a3641dd
commit 121c592
Showing
4 changed files
with
38 additions
and
25 deletions.
There are no files selected for viewing
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,12 @@ | ||
.inlay-hint { | ||
color: color(var(--foreground) alpha(0.6)); | ||
background-color: color(var(--foreground) alpha(0.08)); | ||
border-radius: 4px; | ||
padding: 0.05em 4px; | ||
font-size: 0.9em; | ||
} | ||
|
||
.inlay-hint a { | ||
color: color(var(--foreground) alpha(0.6)); | ||
text-decoration: none; | ||
} |
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