fix #3061738 by unclobbering some Monaco styles we clobber (#1784)

This commit is contained in:
Ashley Stanton-Nurse 2024-04-02 10:51:19 -07:00 committed by GitHub
parent 1464745659
commit b44778b00a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -2296,6 +2296,17 @@ a:link {
display: none !important;
}
.monaco-editor .quick-input-list-label {
/* Restore some of Monaco's default styles that are clobbered by our global styles */
padding: 0;
line-height: 22px;
}
.monaco-editor .quick-input-list .highlight {
/* Padding in highlighted text within the quick input list breaks the flow of the text */
padding: 0;
}
td a {
color: #393939;
}