##// END OF EJS Templates
Backport PR #5534: cleanup some `pre` css inheritance...
Backport PR #5534: cleanup some `pre` css inheritance We had various overrides of the bootstrap defaults for font-size and line-height every time we made a pre tag, and then some overrides of our overrides when we wanted something slightly different. This moves the most basic overrides to apply to all pre tags, reducing the number of downstream changes we need. Should hopefully replace the CSS changes in #5488

File last commit:

r15847:5c22c5ca
r16675:4a6cc50c
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);
}