1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-26 01:35:28 +03:00

Fix disabled button jump when becoming enabled.

This commit is contained in:
Kristjan Vaga 2015-11-10 11:23:31 +02:00
parent 7f8459c5d7
commit f05305041f

View file

@ -535,12 +535,12 @@ input[type="number"]::-webkit-inner-spin-button {
#tabs ul { #tabs ul {
/* overflow-y: auto; do not force scrollbars as it renders blank stripe on some user agents */ /* overflow-y: auto; do not force scrollbars as it renders blank stripe on some user agents */
} }
#tabs.logopen ul { #tabs.logopen ul {
/* Cause the height to shrink to contain its floated contents while log is open */ /* Cause the height to shrink to contain its floated contents while log is open */
} }
.header-wrapper .mode-connected { .header-wrapper .mode-connected {
@ -959,7 +959,7 @@ dialog {
cursor: default; cursor: default;
color: #fff; color: #fff;
background-color: #AFAFAF; background-color: #AFAFAF;
border: none; border: 1px solid #AFAFAF;
pointer-events: none; pointer-events: none;
text-shadow: none; text-shadow: none;
opacity: 0.5; opacity: 0.5;
@ -1407,12 +1407,12 @@ dialog {
body { body {
/*font-size: 11px;*/ /*font-size: 11px;*/
/* lets see if we really need this? */ /* lets see if we really need this? */
} }
.tab-setup, .tab-landing, .tab-adjustments, .tab-auxiliary, .tab-cli, .tab-configuration, .tab-dataflash, .tab-setup, .tab-landing, .tab-adjustments, .tab-auxiliary, .tab-cli, .tab-configuration, .tab-dataflash,
.tab-firmware_flasher, .tab-gps, .tab-help, .tab-led-strip, .tab-logging, .tab-modes, .tab-motors, .tab-firmware_flasher, .tab-gps, .tab-help, .tab-led-strip, .tab-logging, .tab-modes, .tab-motors,
.tab-pid_tuning, .tab-ports, .tab-receiver, .tab-sensors, .tab-servos { .tab-pid_tuning, .tab-ports, .tab-receiver, .tab-sensors, .tab-servos {
} }
.cf_table td { .cf_table td {
padding-top: 2px; padding-top: 2px;
@ -1423,7 +1423,7 @@ dialog {
} }
.default_btn a { .default_btn a {
/*font-size:11px;*/ /*font-size:11px;*/
} }
#tabs li a { #tabs li a {
font-family: 'open_sansregular', Arial; font-family: 'open_sansregular', Arial;
@ -1484,4 +1484,4 @@ dialog {
height: calc(100% - 81px); height: calc(100% - 81px);
overflow-y: auto; overflow-y: auto;
} }
} }