##// END OF EJS Templates
Merge pull request #4230 from fperez/mpl-backends...
Merge pull request #4230 from fperez/mpl-backends Switch correctly to the user's default matplotlib backend after inline. If '%matplotlib inline' was called first, we'd incorrectly revert to inline when plain '%matplotlib' was called, instead of loading the user's default GUI. If the user called '%matplotlib' first (without 'inline') it worked correctly, but not in the other order. The fix is to read the backend from the original defaults, not from the runtime data structure. Requires matplotlib 1.1

File last commit:

r11033:fa36e98f
r12790:a562753f merge
Show More
pager.less
21 lines | 339 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 {
overflow: auto;
display: none;
MinRK
pager styling...
r10914
pre {
font-size: @baseFontSize;
line-height: @code_line_height;
color: @textColor;
background-color: @cell_background;
padding: 0.4em;
}
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }