##// END OF EJS Templates
Fix Qt loader commit_api() for 'pyqtv1' or 'pyqtdefault'...
Fix Qt loader commit_api() for 'pyqtv1' or 'pyqtdefault' Our Qt loaders have three options representing PyQt - pyqt (with v2 strings API), pyqtv1 (v1 ditto), and pyqtdefault, which is v2 on Python 3 only. When loading pyqtv1 or pyqtdefault, the code to deny imports of other bindings would assume that api != pyqt meant we were using pyqt5, and forbid future imports of PyQt4. This changes the logic around so PyQt4 is the else: case, catching all three possible names for it. PyQt5 and PySide have, so far, only one name each.

File last commit:

r17676:655f2243
r18405:5f275fe1
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);
}