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

r16912:30744239
r17420:69911d59
Show More
pager.less
22 lines | 392 B | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 div#pager_splitter {
height: 8px;
}
MinRK
pager styling...
r10914 #pager-container {
position: relative;
MinRK
reduce horizontal padding for pager-container
r10955 padding: 15px 0px;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
div#pager {
Brian E. Granger
Lots of CSS tweaks to get nbconvert output looking right.
r15733 font-size: @notebook_font_size;
line-height: @notebook_line_height;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 overflow: auto;
display: none;
MinRK
pager styling...
r10914
pre {
line-height: @code_line_height;
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @text-color;
MinRK
pager styling...
r10914 background-color: @cell_background;
Brian E. Granger
Adjusting padding of output subareas and adding @code_padding.
r13687 padding: @code_padding;
MinRK
pager styling...
r10914 }
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }