mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
1770319ac2
* Created css vars for every less var * Finish converting Less var to CSS vars
23 lines
524 B
Plaintext
23 lines
524 B
Plaintext
// 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: var(--font-size-sm);
|
|
font-family: var(--font-monospace);
|
|
padding: var(--padding-xs) var(--padding-sm);
|
|
z-index: 99999;
|
|
|
|
.CodeMirror-lint-message-error {
|
|
background-image: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|