livebook/assets/css/global.css
Jonatan Kłosko 700987dc02
Add editor completion to Elixir cells (#208)
* Implement editor completion for Elixir cells

* Add completion tests

* Refactor completion

* Only extract Markdown docs for now

* Fix Elixir version-dependent test

* Fix docs matching

* Use upcoming Code.cursor_context/2

* Start temporary completion processes under a supervisor

* Show Erlang docs in completion items

* Update to latest Code.cursor_context

* Refactor completion

* Fix module completion when alias expands to Erlang module

* Remove tests-generated notebook

* Show variables and map fields differently

* Adjust signatures formatting
2021-04-20 19:34:17 +02:00

33 lines
743 B
CSS

/* Remove the default outline on focused elements */
:focus,
button:focus {
outline: none;
}
body {
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
/* nprogress overrides (https://github.com/rstacruz/nprogress#customization) */
#nprogress .bar {
background: #3e64ff !important;
}
#nprogress .peg {
box-shadow: 0 0 10px #3e64ff, 0 0 5px #3e64ff;
}
#nprogress .spinner-icon {
border-top-color: #3e64ff;
border-left-color: #3e64ff;
}
/* Monaco overrides */
/* Add some spacing to code snippets in completion suggestions */
div.suggest-details-container div.monaco-tokenized-source {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}