##// END OF EJS Templates
Review comments
Review comments

File last commit:

r16932:94644d14
r16957:7bf4a46d
Show More
notificationarea.less
46 lines | 610 B | text/x-less | LessCssLexer
/ IPython / html / static / notebook / less / notificationarea.less
Brian E. Granger
Splitting notebook.less into separate files.
r10730 #notification_area {
jon
Fixed status indicator region
r16932 .pull-right();
Brian E. Granger
Splitting notebook.less into separate files.
r10730 z-index: 10;
}
Brian E. Granger
Add edit/command mode indicator.
r15115
.indicator_area {
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @navbar-default-link-color;
Brian E. Granger
Add edit/command mode indicator.
r15115 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 {
jon
Fixed status indicator region
r16932 .pull-right();
.indicator_area();
margin-right: 12px;
}
#modal_indicator {
.pull-right();
.indicator_area();
margin-right: 5px;
Brian E. Granger
Add edit/command mode indicator.
r15115 }
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);
}