insomnia/app/ui/css/editor/tooltip.less
Gregory Schier 10564b56a2 Final prep for v5 launch (#128)
* 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
2017-04-04 16:06:43 -07:00

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;
}
}