##// END OF EJS Templates
Support echoing output from other clients...
Support echoing output from other clients in the zmq console Can result in outputs like: ``` In [1]: 1 [remote]In [1]: 1 [remote]Out[1]: 1 [remote]In [2]: 3 [remote]Out[2]: 3 Out[3]: 1 ``` Note that there will be inconsistencies in prompt numbers because some execution may take place after the in-prompt is drawn.

File last commit:

r17676:655f2243
r18373:fbda5499
Show More
notificationarea.less
54 lines | 748 B | text/x-less | LessCssLexer
#notification_area {
.pull-right();
z-index: 10;
}
.indicator_area {
color: @navbar-default-link-color;
padding: 4px 3px;
margin: 0px;
width: 11px;
z-index: 10;
text-align: center;
}
#kernel_indicator {
.pull-right();
.indicator_area();
margin-right: 12px;
}
#modal_indicator {
.pull-right();
.indicator_area();
margin-right: 5px;
}
.edit_mode_icon:before {
.icon(@fa-var-pencil)
}
.command_mode_icon:before {
.icon(' ');
}
.kernel_idle_icon:before {
.icon(@fa-var-circle-o);
}
.kernel_busy_icon:before {
.icon(@fa-var-circle);
}
.kernel_dead_icon:before {
.icon(@fa-var-bomb);
}
.kernel_disconnected_icon:before {
.icon(@fa-var-chain-broken);
}