mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
10564b56a2
* Version number and changelog scroll * Fixed CodeMirror tooltip css * AUtocomplete dropdown styling * Docker Ubuntu build and some tweaks * Fix SSL verificatioN * Don't show SSL data * Update README * Fixed URL paste handler * Import from curl improvements * Minor things
23 lines
478 B
Plaintext
23 lines
478 B
Plaintext
@import '../constants/dimensions';
|
|
|
|
// Tooltip for errors
|
|
// NOTE: This is a global element, and does not live inside .editor
|
|
.CodeMirror-lint-tooltip {
|
|
background-color: var(--color-bg);
|
|
color: var(--color-font);
|
|
border-color: var(--hl-md);
|
|
border-radius: 0;
|
|
font-size: @font-size-md;
|
|
padding: @padding-xs @padding-sm;
|
|
z-index: 99999;
|
|
|
|
.CodeMirror-lint-message-error {
|
|
background-image: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|