Adding sensor iconset for errors

pull/79/head
skaman82 8 years ago
parent 544be1746e
commit 584b8df22b

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

@ -243,7 +243,6 @@ input[type="number"]::-webkit-inner-spin-button {
.gyroicon.active {
background-image: url(images/icons/sensor_gyro_on.png);
color: #61d514;
color: #818181;
}
@ -262,10 +261,14 @@ input[type="number"]::-webkit-inner-spin-button {
.accicon.active {
background-image: url(images/icons/sensor_acc_on.png);
color: #61d514;
color: #818181;
}
.accicon.error {
background-image: url(images/icons/sensor_acc_error.png);
color: #d40000;
}
.magicon {
background-image: url(images/icons/sensor_mag_off.png);
background-size: 42px;
@ -283,6 +286,10 @@ input[type="number"]::-webkit-inner-spin-button {
background-image: url(images/icons/sensor_mag_on.png);
color: #818181;
}
.magicon.error {
background-image: url(images/icons/sensor_mag_error.png);
color: #d40000;
}
.gpsicon {
background-image: url(images/icons/sensor_sat_off.png);
@ -302,6 +309,11 @@ input[type="number"]::-webkit-inner-spin-button {
color: #818181;
}
.gpsicon.error {
background-image: url(images/icons/sensor_sat_error.png);
color: #d40000;
}
.opflowicon {
background-image: url(images/icons/sensor_flow_off.png);
background-size: 42px;
@ -320,6 +332,11 @@ input[type="number"]::-webkit-inner-spin-button {
color: #818181;
}
.opflowicon.error {
background-image: url(images/icons/sensor_flow_error.png);
color: #d40000;
}
.baroicon {
background-image: url(images/icons/sensor_baro_off.png);
background-size: 40px;
@ -338,6 +355,11 @@ input[type="number"]::-webkit-inner-spin-button {
color: #818181;
}
.baroicon.error {
background-image: url(images/icons/sensor_baro_error.png);
color: #d40000;
}
.sonaricon {
background-image: url(images/icons/sensor_sonar_off.png);
background-size: 41px;
@ -356,6 +378,11 @@ input[type="number"]::-webkit-inner-spin-button {
color: #818181;
}
.sonaricon.error {
background-image: url(images/icons/sensor_sonar_error.png);
color: #d40000;
}
.airspeedicon {
background-image: url(images/icons/sensor_airspeed_off.png);
background-size: 41px;
@ -374,6 +401,11 @@ input[type="number"]::-webkit-inner-spin-button {
color: #818181;
}
.airspeedicon.error {
background-image: url(images/icons/sensor_airspeed_error.png);
color: #d40000;
}
#sensor-status li:last-child {
border-right: 0px solid #c0c0c0;
border-top-right-radius: 5px;

Loading…
Cancel
Save