##// END OF EJS Templates
Remove $el_to_style from the widget javascript code; '' now defaults to this.$el...
Remove $el_to_style from the widget javascript code; '' now defaults to this.$el This seems to make it easiest to select the top-level element. An alternative is to use special syntax for top-level elements, like in https://github.com/ipython/ipython/pull/6185 This will be followed up by other fixes that let the user set specific common properties of different elements. This change also adds the .addBack() call, which means that nonempty selectors now apply to this.$el and its descendants, rather than just the descendants of this.$el.

File last commit:

r17292:71d7642b
r17420:69911d59
Show More
codecell.less
44 lines | 1.0 KiB | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 div.code_cell {
}
/* any special styling for code cells that are currently running goes here */
div.code_cell.running {
}
div.input {
page-break-inside: avoid;
.hbox();
}
MinRK
move prompts from margin to main column on small screens...
r15966 @media (max-width: 480px) {
// move prompts above code on small screens
div.input {
.vbox();
}
}
Brian E. Granger
Splitting notebook.less into separate files.
r10730 /* input_area and input_prompt must match in top border and margin for alignment */
div.input_prompt {
Jason Grout
abstract hard-coded style values to be variables for different theming
r17292 color: @input_prompt_color;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 border-top: 1px solid transparent;
}
Brian E. Granger
Lots of CSS tweaks to get nbconvert output looking right.
r15733 // The styles related to div.highlight are for nbconvert HTML output only. This works
// because the .highlight div isn't present in the live notebook. We could put this into
// nbconvert, but it easily falls out of sync, can't use our less variables and doesn't
// help the basic template when paired with our CSS.
div.input_area > div.highlight {
margin: @code_padding;
border: none;
padding: 0px;
background-color: transparent;
}
div.input_area > div.highlight > pre {
margin: 0px;
MinRK
cleanup some `pre` css inheritance...
r16205 border: none;
Brian E. Granger
Lots of CSS tweaks to get nbconvert output looking right.
r15733 padding: 0px;
background-color: transparent;
}