Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDarren Lines <darren@darrenlines.uk>2022-03-13 13:25:22 +0300
committerDarren Lines <darren@darrenlines.uk>2022-03-13 13:25:22 +0300
commit1c571ca68133c0708a58fd7224e767d8b2c02594 (patch)
tree86a0b27993468ff094184e858f2822aac76aa377 /src
parent66d682daba37dc538281ca17f58196864b6b5c99 (diff)
Dynamic mixer outputs image
First cut of code. It's pretty much there. I just need to decide how to handle changing the mixer type, then deciding to stick with the current mixer. Other than that, it's working as expected.
Diffstat (limited to 'src')
-rw-r--r--src/css/tabs/configuration.css4
-rw-r--r--src/css/tabs/mixer.css17
2 files changed, 18 insertions, 3 deletions
diff --git a/src/css/tabs/configuration.css b/src/css/tabs/configuration.css
index 7f86aa31..c16bbae2 100644
--- a/src/css/tabs/configuration.css
+++ b/src/css/tabs/configuration.css
@@ -138,9 +138,7 @@ hr {
}
.tab-configuration .mixerPreview img {
- width: 90%;
- height: 90%;
- padding: 5%;
+ width: 175px;
}
.tab-configuration .gui_box {
diff --git a/src/css/tabs/mixer.css b/src/css/tabs/mixer.css
index 08e01e7b..e50cdbea 100644
--- a/src/css/tabs/mixer.css
+++ b/src/css/tabs/mixer.css
@@ -95,4 +95,21 @@
.mixer-fixed-value-col {
display: none;
+}
+
+.outputImageNumber {
+ position: absolute;
+ background-color: #FFF;
+ font-family: 'open_sansbold', Arial, serif;
+ width: 18px;
+ height: 18px;
+ border: 2.5px solid #ff00ff;
+ border-radius: 4px;
+}
+
+.outputImageNumber.isMotor {
+ width: 29px;
+ height: 29px;
+ line-height: 27px;
+ border-radius: 20px;
} \ No newline at end of file