##// END OF EJS Templates
renamed: Custom Widgets.ipynb -> Date Picker Widget.ipynb
renamed: Custom Widgets.ipynb -> Date Picker Widget.ipynb

File last commit:

r17414:d2e61f9b
r17488:0d8c49b1
Show More
notificationarea.less
46 lines | 622 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 {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(@fa-var-pencil)
Paul Ivanov
semantic names for indicator icons...
r15806 }
Paul Ivanov
rename css class names to be consistent with current style
r15847 .command_mode_icon:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(' ');
Paul Ivanov
semantic names for indicator icons...
r15806 }
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_idle_icon:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(@fa-var-circle-o);
Paul Ivanov
semantic names for kernel status indicator
r15807 }
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_busy_icon:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(@fa-var-circle);
Paul Ivanov
semantic names for kernel status indicator
r15807 }