##// END OF EJS Templates
Merge pull request #6828 from takluyver/terminal-list...
Merge pull request #6828 from takluyver/terminal-list Add terminals tab to the dashboard

File last commit:

r17783:73622281
r18615:96791286 merge
Show More
textcell.less
69 lines | 1.3 KiB | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 div.text_cell {
Brian E. Granger
Fixing left padding of text cells to match that of code cells.
r13791 padding: 5px 5px 5px 0px;
Brian E. Granger
Adding prompt area to non-CodeCells to indent content....
r13776 .hbox();
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
MinRK
move prompts from margin to main column on small screens...
r15966 @media (max-width: 480px) {
// remove prompt indentation on small screens
div.text_cell > div.prompt {
display: none;
}
}
Brian E. Granger
Splitting notebook.less into separate files.
r10730
div.text_cell_render {
/*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
outline: none;
resize: none;
width: inherit;
border-style: none;
Brian E. Granger
Using @code_padding variable.
r14875 padding: 0.5em 0.5em 0.5em @code_padding;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @text-color;
Matthias BUSSONNIER
move styling from js to css
r17426 .border-box-sizing();
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
MinRK
move anchor-link off of heading text...
r10751 a.anchor-link:link {
text-decoration: none;
padding: 0px 20px;
MinRK
toggle heading-link visibility with CSS alone
r10819 visibility: hidden;
MinRK
move anchor-link off of heading text...
r10751 }
MinRK
toggle heading-link visibility with CSS alone
r10819
Matthias BUSSONNIER
restore anchore on h2-h6 links
r10845 h1,h2,h3,h4,h5,h6 {
&:hover .anchor-link {
visibility: visible;
}
}
Brian E. Granger
Adding prompt area to non-CodeCells to indent content....
r13776
Brian E. Granger
Initial spacing modifications.
r14872 div.cell.text_cell.rendered {
padding: 0px;
}
Paul Ivanov
proportional font-size when editing heading cells...
r17467
Matthias BUSSONNIER
Move md-cell display logic to css
r17783
.text_cell.rendered .input_area {
display: none;
}
.text_cell.unrendered .text_cell_render {
display:none;
}
Paul Ivanov
proportional font-size when editing heading cells...
r17467 .cm-s-heading-1,
.cm-s-heading-2,
.cm-s-heading-3,
.cm-s-heading-4,
.cm-s-heading-5,
Paul Ivanov
match font family when editing heading cells
r17476 .cm-s-heading-6 {
font-weight: bold;
font-family: @font-family-sans-serif;
}
Paul Ivanov
proportional font-size when editing heading cells...
r17467
.cm-s-heading-1 { font-size:150%; }
.cm-s-heading-2 { font-size: 130%; }
.cm-s-heading-3 { font-size: 120%; }
.cm-s-heading-4 { font-size: 110%; }
Paul Ivanov
fix more style consistencies
r17477 .cm-s-heading-5 {
font-size: 100%;
font-style: italic;
}
.cm-s-heading-6 {
font-size: 90%;
font-style: italic;
}