##// 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
altuploadform.less
25 lines | 408 B | text/x-less | LessCssLexer
/ IPython / html / static / tree / less / altuploadform.less
Matthias BUSSONNIER
alternate notebook upload methods...
r6838 /* We need an invisible input field on top of the sentense*/
/* "Drag file onto the list ..." */
.alternate_upload
{
background-color:none;
display: inline;
}
.alternate_upload.form
{
padding: 0;
margin:0;
}
.alternate_upload input.fileinput
{
background-color:red;
position:relative;
opacity: 0;
z-index: 2;
Matthias BUSSONNIER
position upload form for firefox
r7116 width: 295px;
margin-left:163px;
cursor: pointer;
Matthias BUSSONNIER
alternate notebook upload methods...
r6838 }