##// END OF EJS Templates
remove some custom css...
remove some custom css mainly in navbars, where we were doing custom things that bootstrap already did with classes. This did require the removal of multiple class LESS inheritance for navbar buttons, because it doesn't work properly. Seems like a LESS bug, but I'm not sure.

File last commit:

r19298:d8390523
r19298:d8390523
Show More
notificationarea.less
49 lines | 696 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;
Min RK
remove some custom css...
r19298 margin-left: 5px;
margin-right: 5px;
Brian E. Granger
Add edit/command mode indicator.
r15115 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();
}
#modal_indicator {
.pull-right();
.indicator_area();
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 }
MinRK
improve indicators and handling of dead kernels and broken websocket connections...
r17676 .kernel_dead_icon:before {
.icon(@fa-var-bomb);
}
.kernel_disconnected_icon:before {
.icon(@fa-var-chain-broken);
}
Paul Ivanov
semantic names for kernel status indicator
r15807