1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-17 05:15:21 +03:00

Color theme change

This commit is contained in:
skaman82 2016-06-11 04:38:24 +02:00
parent ace46998ce
commit 46f6b9cd5f
26 changed files with 157 additions and 164 deletions

View file

@ -244,7 +244,7 @@ GUI_control.prototype.content_ready = function (callback) {
$('.togglesmall').each(function(index, elem) {
var switchery = new Switchery(elem, {
size: 'small',
color: '#59aa29',
color: '#ffbb00',
secondaryColor: '#c4c4c4'
});
$(elem).on("change", function (evt) {
@ -255,7 +255,7 @@ GUI_control.prototype.content_ready = function (callback) {
$('.toggle').each(function(index, elem) {
var switchery = new Switchery(elem, {
color: '#59aa29',
color: '#ffbb00',
secondaryColor: '#c4c4c4'
});
$(elem).on("change", function (evt) {
@ -267,7 +267,7 @@ GUI_control.prototype.content_ready = function (callback) {
$('.togglemedium').each(function(index, elem) {
var switchery = new Switchery(elem, {
className: 'switcherymid',
color: '#59aa29',
color: '#ffbb00',
secondaryColor: '#c4c4c4'
});
$(elem).on("change", function (evt) {

View file

@ -18,7 +18,7 @@
.jBox-container {
background: #fff;
border:1px solid #59aa29;
border:1px solid #ffbb00;
max-width:180px;
font-size:11px;
line-height:13px;
@ -83,7 +83,7 @@
background: #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
border:1px solid #59aa29;
border:1px solid #ffbb00;
}