##// END OF EJS Templates
Split js tests in N subgroups....
Split js tests in N subgroups. js test are the longer ~8 minutes vs ~3 for Python, and fails the more often. Hopefully this will speedup the build and have less test relaunched when we have a random faillure. Splitting should make the js test a bit faster

File last commit:

r19671:5fe94896
r19829:cb55df8b
Show More
notificationarea.less
56 lines | 860 B | text/x-less | LessCssLexer
#notification_area {
.pull-right();
z-index: 10;
}
.indicator_area {
color: @navbar-default-link-color;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
}
#kernel_indicator {
.pull-right();
.indicator_area();
width: auto;
border-left: 1px solid;
.kernel_indicator_name {
padding-left: 5px;
padding-right: 5px;
}
}
#modal_indicator {
.pull-right();
.indicator_area();
}
.edit_mode .modal_indicator:before {
.icon(@fa-var-pencil)
}
.command_mode .modal_indicator: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);
}