Add a space after paragraphs in descriptions and add padding to hover tooltips
This commit is contained in:
parent
b54139376e
commit
18b1739b89
1 changed files with 7 additions and 2 deletions
|
|
@ -72,8 +72,7 @@
|
||||||
|
|
||||||
/* Override default styles from the codemirror inline css for autocomplete info tooltip*/
|
/* Override default styles from the codemirror inline css for autocomplete info tooltip*/
|
||||||
.cm-tooltip.cm-completionInfo {
|
.cm-tooltip.cm-completionInfo {
|
||||||
padding: 12px !important;
|
padding: 0 !important;
|
||||||
padding-bottom: 12px !important;
|
|
||||||
border: 1px solid var(--foreground) !important;
|
border: 1px solid var(--foreground) !important;
|
||||||
border-radius: 4px !important;
|
border-radius: 4px !important;
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
|
||||||
|
|
@ -87,6 +86,8 @@
|
||||||
|
|
||||||
/* Main tooltip container */
|
/* Main tooltip container */
|
||||||
.autocomplete-info-tooltip {
|
.autocomplete-info-tooltip {
|
||||||
|
padding: 12px !important;
|
||||||
|
padding-bottom: 12px !important;
|
||||||
border-radius: 4px !important;
|
border-radius: 4px !important;
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-family, 'SF Mono', 'Monaco', monospace);
|
font-family: var(--font-family, 'SF Mono', 'Monaco', monospace);
|
||||||
|
|
@ -97,6 +98,10 @@
|
||||||
min-width: 400px;
|
min-width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.autocomplete-info-tooltip p {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
.autocomplete-info-function-name {
|
.autocomplete-info-function-name {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue