mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-18 23:08:37 +08:00
* Update cell actions * Add new focus indicator * Update headings typography * Update cell actions and insert buttons * Add sidebar menu * Add settings modal * Update homepage * Update settings dialog * Rename classes * Add floating menu * Update icon colors on hover * Fix homepage tests * Format assets source * Update monaco editor * Fix editor width on resize * Add more padding to the notebook content * Update settings dialog title * Show reevaluate button when the cell is in evaluated state * Show section actions on focus or hover only * Pre-fill runtime selector with the current configuration * Ignore cmd + enter in Markdown cells
25 lines
543 B
CSS
25 lines
543 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;
|
|
}
|