You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
865 B
58 lines
865 B
#notification_area {
|
|
.pull-right();
|
|
z-index: 10;
|
|
}
|
|
|
|
.indicator_area {
|
|
.pull-right();
|
|
color: @navbar-default-link-color;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
width: 11px;
|
|
z-index: 10;
|
|
text-align: center;
|
|
width: auto;
|
|
}
|
|
|
|
#kernel_indicator {
|
|
.indicator_area();
|
|
|
|
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);
|
|
}
|
|
|
|
|