mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
1df3ba4531
* Initial GraphQL support * Better error handling and formatting
26 lines
566 B
Plaintext
26 lines
566 B
Plaintext
@import '../constants/dimensions';
|
|
@import '../constants/fonts';
|
|
|
|
// Tooltip for errors
|
|
// NOTE: This is a global element, and does not live inside .editor
|
|
.CodeMirror-lint-tooltip {
|
|
max-width: 30em;
|
|
background-color: var(--color-bg);
|
|
color: var(--color-font);
|
|
border-color: var(--color-danger);
|
|
border-radius: 0;
|
|
font-size: @font-size-sm;
|
|
font-family: @font-monospace;
|
|
padding: @padding-xs @padding-sm;
|
|
z-index: 99999;
|
|
|
|
.CodeMirror-lint-message-error {
|
|
background-image: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|