##// END OF EJS Templates
Test case for setting only lower or upper, no sensible default so should be an error
Test case for setting only lower or upper, no sensible default so should be an error

File last commit:

r17676:655f2243
r17704:400433c5
Show More
notificationarea.less
54 lines | 748 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 }
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