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-02-19 21:34:37 +0300
committerDarren Lines <darren@darrenlines.uk>2022-02-19 21:34:37 +0300
commit0f27abf733ef260f084b9ee5de9f1b63deecd8ed (patch)
tree11dd59bbfe72570f83f2756dc2a953c5e35e5c77 /src
parenta31aa128f1893aa7c34ac84e7e0cbbab25d342e9 (diff)
Add highlighting for fields that change with profiles
- Added field arrays for control and battery profiles. - Added highlight mechanism for **data-setting** fields - Changed battery and control profile drop down text to match the field colours.
Diffstat (limited to 'src')
-rw-r--r--src/css/dropdown-lists/css/style_lists.css18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/css/dropdown-lists/css/style_lists.css b/src/css/dropdown-lists/css/style_lists.css
index 772b808e..9df4c9ef 100644
--- a/src/css/dropdown-lists/css/style_lists.css
+++ b/src/css/dropdown-lists/css/style_lists.css
@@ -112,7 +112,7 @@
}
.dropdown-dark {
- background: #636363; /* NEW2 */
+ background: #636363; /* NEW2 */
background: #3e403f; /* NEW */
border-color: #111 #0a0a0a black;
@@ -123,11 +123,7 @@
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
color:#a6a6a6;
- text-shadow:0px 1px rgba(0, 0, 0, 0.25);
-
-
-
-
+ text-shadow:0px 1px rgba(0, 0, 0, 0.25);
}
.dropdown-dark:before {
border-bottom-color: #aaa;
@@ -143,9 +139,17 @@
}
.dropdown-dark .dropdown-select:focus {
- color: #fff;
+ color: #fff !important;
}
.dropdown-dark .dropdown-select > option {
background: #56ab1a;
text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}
+
+.dropdown-dark #profilechange {
+ color: #d5ebfe;
+}
+
+.dropdown-dark #batteryprofilechange {
+ color: #fef2d5;
+} \ No newline at end of file