##// 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:

r13667:8cda9a7b
r16510:633371e5
Show More
celltoolbar.less
76 lines | 1.4 KiB | text/x-less | LessCssLexer
MinRK
tweak global hide/show...
r13667 /* CSS for the cell toolbar */
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142
.celltoolbar {
Matthias BUSSONNIER
some css fixes
r9377 border: thin solid #CFCFCF;
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 border-bottom: none;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 background : #EEE;
MinRK
tweak global hide/show...
r13667 border-radius : 3px 3px 0px 0px;
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 width:100%;
-webkit-box-pack: end;
MinRK
fix cell toolbar
r10935 height:22px;
Matthias BUSSONNIER
remove more hard coded layout
r13332 .hbox();
.reverse();
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }
Brian Granger
Further cleanup for celltoolbars.
r9144 .ctb_hideshow {
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 display:none;
vertical-align:bottom;
padding-right: 2px;
}
.celltoolbar > div {
padding-top: 0px;
Matthias BUSSONNIER
gshow
r9143 }
Matthias BUSSONNIER
fix celltoolbar css
r9378
MinRK
tweak global hide/show...
r13667 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
Cell toolbars are only shown when the ctb_global_show class is also set.
Brian Granger
Minor tweaks to the css to enable single cell hide/show.
r9145 */
MinRK
tweak global hide/show...
r13667 .ctb_global_show .ctb_show.ctb_hideshow {
display: block;
Matthias BUSSONNIER
gshow
r9143 }
MinRK
tweak global hide/show...
r13667 .ctb_global_show .ctb_show + .input_area,
.ctb_global_show .ctb_show + div.text_cell_input
{
Matthias BUSSONNIER
gshow
r9143 border-top-right-radius: 0px;
border-top-left-radius: 0px;
}
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 .celltoolbar .button_container select {
margin: 10px;
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 margin-top: 1px;
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 margin-bottom: 0px;
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 padding:0;
Matthias BUSSONNIER
some css fixes
r9377 font-size: 87%;
width:auto;
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 display:inline-block;
height:18px;
line-height:18px;
vertical-align:top;
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 }
Matthias BUSSONNIER
fix a few css rules...
r9285 .celltoolbar label{
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 display:inline-block;
height:15px;
line-height:15px;
vertical-align:top;
Matthias BUSSONNIER
fix a few css rules...
r9285 }
Matthias BUSSONNIER
some css fixes
r9377
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 .celltoolbar label span {
Matthias BUSSONNIER
fix celltoolbar css
r9378 font-size: 85%;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 .celltoolbar input[type=checkbox] {
Matthias BUSSONNIER
fix a few css rules...
r9285 margin: 0px;
margin-left: 4px;
margin-right: 4px;
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 }
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Matthias BUSSONNIER
fix a few css rules...
r9285
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 .celltoolbar .ui-button {
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 border: none;
Matthias BUSSONNIER
fix celltoolbar layout on FF
r9422 vertical-align:top;
height:20px;
MinRK
tweak global hide/show...
r13667 min-width:30px;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }