##// END OF EJS Templates
test WinHPC launchers on all platforms...
test WinHPC launchers on all platforms the tests don't actually launch anything, they just write template files, so they can run on any platform.

File last commit:

r12364:f2e0e7d4
r12903:1e3f6739
Show More
cell.less
26 lines | 714 B | text/x-less | LessCssLexer
MinRK
don't split `.cell` and `div.cell` CSS...
r12364 div.cell {
Brian E. Granger
Splitting notebook.less into separate files.
r10730 border: 1px solid transparent;
.vbox();
&.selected {
.corner-all;
border : thin @border_color solid;
}
width: 100%;
padding: 5px 5px 5px 0px;
/* This acts as a spacer between cells, that is outside the border */
MinRK
menubar not full-width...
r10970 margin: 2px 0px 2px 7px;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 outline: none;
}
div.prompt {
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
width: 11ex;
/* This 0.4em is tuned to match the padding on the CodeMirror editor. */
padding: 0.4em;
margin: 0px;
font-family: @monoFontFamily;
text-align: right;
/* This has to match that of the the CodeMirror class line-height below */
MinRK
bootstrap tree
r10891 line-height: @code_line_height;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }