##// END OF EJS Templates
ensure ipython-command-mode icon displayed on load
ensure ipython-command-mode icon displayed on load

File last commit:

r15807:57294b9f
r15808:7a790a0e
Show More
notificationarea.less
35 lines | 514 B | text/x-less | LessCssLexer
/ IPython / html / static / notebook / less / notificationarea.less
Brian E. Granger
Splitting notebook.less into separate files.
r10730 #notification_area {
z-index: 10;
}
Brian E. Granger
Add edit/command mode indicator.
r15115
.indicator_area {
color: @navbarLinkColor;
padding: 4px 3px;
margin: 0px;
width: 11px;
z-index: 10;
Brian E. Granger
Spinning sun + nothing for command mode.
r15128 text-align: center;
Brian E. Granger
Add edit/command mode indicator.
r15115 }
#kernel_indicator {
// Pull it to the right, outside the container boundary
margin-right: -16px;
}
Paul Ivanov
semantic names for indicator icons...
r15806 .ipython-edit-mode:before {
.icon(@pencil);
}
.ipython-command-mode:before {
.icon(' ');
}
Paul Ivanov
semantic names for kernel status indicator
r15807 .ipython-kernel-idle:before {
.icon(@circle-blank);
}
.ipython-kernel-busy:before {
.icon(@circle);
}