Merge pull request #2215 from Asizon/allow_cordova_darkmode_receiver_graphic
Added darkmode and cordova compatibility to receiver tab rx plot10.8-maintenance
commit
f0a03ab90e
|
@ -453,6 +453,10 @@ progress[value]::-webkit-progress-bar {
|
||||||
background-color: #4e4e4e;
|
background-color: #4e4e4e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-motors text {
|
||||||
|
fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ONBOARD LOGGING TAB */
|
/* ONBOARD LOGGING TAB */
|
||||||
|
|
||||||
|
@ -752,6 +756,14 @@ progress[value]::-webkit-progress-bar {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-receiver .plot_control {
|
||||||
|
background-color: #2f2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-receiver text {
|
||||||
|
fill: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* SENSORS TAB */
|
/* SENSORS TAB */
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
.tab-receiver .spacer {
|
.tab-receiver .spacer {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 9px;
|
padding-right: 10px;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,7 +430,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-receiver #RX_plot {
|
.tab-receiver #RX_plot {
|
||||||
width: calc(100% - 181px);
|
width: calc(100% - 201px);
|
||||||
height: 200px;
|
height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -558,4 +558,22 @@
|
||||||
.tab-receiver .bars {
|
.tab-receiver .bars {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-receiver .spacer {
|
||||||
|
padding-left: 0px;
|
||||||
|
padding-right: 0px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-receiver #RX_plot {
|
||||||
|
width: calc(100% - 120px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-receiver .plot_control {
|
||||||
|
width: 112px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-receiver .plot_control .row {
|
||||||
|
display: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue