1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-23 08:15:19 +03:00

Report logic condiotion activation status

This commit is contained in:
Pawel Spychalski (DzikuVx) 2019-09-14 12:55:16 +02:00
parent e3b89453e8
commit 9c627f7445
9 changed files with 109 additions and 1 deletions

View file

@ -44,4 +44,20 @@ input.logic_element__operand--value {
.logic_cell__operandA,
.logic_cell__operandB {
text-align: left;
}
.logic_cell__active_marker {
border: 1px solid #aaa;
width: 12px;
height: 12px;
border-radius: 6px;
display: inline-block;
}
.logic_cell__active_marker--active {
background-color:rgb(55, 168, 219);
}
.logic_cell__active_marker--inactive {
background-color:transparent;
}