Merge pull request #2215 from Asizon/allow_cordova_darkmode_receiver_graphic

Added darkmode and cordova compatibility to receiver tab  rx plot
10.8-maintenance
Michael Keller 2020-10-14 02:03:04 +13:00 committed by GitHub
commit f0a03ab90e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 2 deletions

View File

@ -453,6 +453,10 @@ progress[value]::-webkit-progress-bar {
background-color: #4e4e4e;
}
.tab-motors text {
fill: white;
}
/* ONBOARD LOGGING TAB */
@ -752,6 +756,14 @@ progress[value]::-webkit-progress-bar {
color: white;
}
.tab-receiver .plot_control {
background-color: #2f2f2f;
}
.tab-receiver text {
fill: white;
}
/* SENSORS TAB */

View File

@ -10,7 +10,7 @@
.tab-receiver .spacer {
padding-left: 10px;
padding-right: 9px;
padding-right: 10px;
width: calc(100% - 10px);
}
@ -430,7 +430,7 @@
}
.tab-receiver #RX_plot {
width: calc(100% - 181px);
width: calc(100% - 201px);
height: 200px;
}
@ -558,4 +558,22 @@
.tab-receiver .bars {
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;
}
}