##// END OF EJS Templates
add utils.tokenutil for getting the token at a cursor offset
add utils.tokenutil for getting the token at a cursor offset

File last commit:

r15847:5c22c5ca
r16578:c21ac70b
Show More
notificationarea.less
35 lines | 502 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
rename css class names to be consistent with current style
r15847 .edit_mode_icon:before {
Paul Ivanov
semantic names for indicator icons...
r15806 .icon(@pencil);
}
Paul Ivanov
rename css class names to be consistent with current style
r15847 .command_mode_icon:before {
Paul Ivanov
semantic names for indicator icons...
r15806 .icon(' ');
}
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_idle_icon:before {
Paul Ivanov
semantic names for kernel status indicator
r15807 .icon(@circle-blank);
}
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_busy_icon:before {
Paul Ivanov
semantic names for kernel status indicator
r15807 .icon(@circle);
}