##// END OF EJS Templates
Shut down kernels in parallel...
Shut down kernels in parallel When stopping the notebook server, it currently sends a shutdown request to each kernel and then waits for the process to finish. This can be slow if you have several kernels running. This makes it issues all the shutdown requests before waiting on the processes, so shutdown happens in parallel. KernelManager (and MultiKernelManager) gain three new public API methods to allow this: * request_shutdown (promoted from a private method) * wait_shutdown (refactored out of shutdown_kernel) * cleanup (refactored out of shutdown_kernel)

File last commit:

r15095:799cc1b3
r16510:633371e5
Show More
menubar.less
32 lines | 487 B | text/x-less | LessCssLexer
MinRK
bootstrap menubar
r10888 #menubar {
}
#menubar .navbar-inner {
min-height: 28px;
MinRK
menubar not full-width...
r10970 border-top: 1px;
border-radius: 0px 0px @baseBorderRadius @baseBorderRadius;
}
#menubar .navbar {
margin-bottom: 8px;
MinRK
use responsive bootstrap
r10900 }
.nav-wrapper {
border-bottom: 1px solid @navbarBorder;
MinRK
menubar not full-width...
r10970 }
MinRK
compress menubar a few pixels vertically
r10971
#menubar li.dropdown {
line-height: 12px;
Matthias BUSSONNIER
make help menu a templates...
r14984 }
i.menu-icon {
// add padding to account for float-right
padding-top: 4px;
}
Jonathan Frederic
FF Fix: make ext icon same line as txt
r15095
ul#help_menu li a{
overflow: hidden;
padding-right: 2.2em;
i {
margin-right: -1.2em;
}
}