betaflight-configurator/tabs/pid_tuning.css

152 lines
2.7 KiB
CSS
Raw Normal View History

.tab-pid_tuning {
}
2014-09-20 12:07:00 +00:00
.tab-pid_tuning input[type="number"]::-webkit-inner-spin-button {
border: 0;
}
.tab-pid_tuning table {
float: left;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
margin-bottom: 10px;
2014-05-05 13:14:27 +00:00
2014-09-20 12:07:00 +00:00
border-collapse: collapse;
}
.tab-pid_tuning table,
.tab-pid_tuning table th,
.tab-pid_tuning table td {
padding: 4px;
border: 1px solid #8b8b8b;
}
.tab-pid_tuning table tr td:first-child {
text-align: center;
2015-11-02 09:10:08 +00:00
width:30%;
2014-09-20 12:07:00 +00:00
}
.tab-pid_tuning table td {
padding: 1px;
}
.tab-pid_tuning table tr:nth-child(odd) {
background-color: #ececec;
}
.tab-pid_tuning table input {
display: block;
2014-05-05 13:14:27 +00:00
2014-09-20 12:07:00 +00:00
width: 100%;
height: 20px;
line-height: 20px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
text-align: right;
}
.tab-pid_tuning .controller {
float: left;
2015-11-02 09:10:08 +00:00
width: calc(40% - 10px);
margin-left: 10px;
margin-bottom: 10px;
border: 1px solid #8b8b8b;
}
.tab-pid_tuning .controller .head {
display: block;
text-align: center;
line-height: 20px;
font-weight: bold;
border-bottom: 1px solid #8b8b8b;
background-color: #ececec;
}
.tab-pid_tuning .controller select {
width: 100%;
height: 20px;
line-height: 20px;
}
2014-09-20 12:07:00 +00:00
.tab-pid_tuning .profile {
float: left;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
width: calc(18% - 2px); /* - border*/
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border: 1px solid #8b8b8b;
}
.tab-pid_tuning .profile .head {
display: block;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
text-align: center;
line-height: 20px;
font-weight: bold;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border-bottom: 1px solid #8b8b8b;
background-color: #ececec;
}
2014-09-23 19:02:07 +00:00
.tab-pid_tuning .profile select {
2014-09-20 12:07:00 +00:00
width: 100%;
2014-09-23 19:02:07 +00:00
padding-left: calc(100% - 35px);
2014-09-20 12:07:00 +00:00
height: 20px;
line-height: 20px;
}
.tab-pid_tuning .pid_tuning {
2015-11-02 09:10:08 +00:00
width: 100%;
2014-09-20 12:07:00 +00:00
}
.tab-pid_tuning .pid_tuning .name {
width: 30%;
}
.tab-pid_tuning .rate-tpa {
float: right;
2015-11-02 09:10:08 +00:00
width: calc(100% - 0px); /* - ( "virtual" margin) */
2014-09-20 12:07:00 +00:00
}
.tab-pid_tuning .buttons {
2015-11-02 09:10:08 +00:00
right:10px;
2014-09-20 12:07:00 +00:00
bottom: 10px;
}
.tab-pid_tuning .update,
.tab-pid_tuning .refresh {
display: block;
float: right;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
height: 28px;
line-height: 28px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
padding: 0 15px 0 15px;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
text-align: center;
font-weight: bold;
2014-03-08 05:25:15 +00:00
2014-09-20 12:07:00 +00:00
border: 1px solid silver;
background-color: #ececec;
}
.tab-pid_tuning .refresh {
margin-right: 10px;
}
.tab-pid_tuning .update:hover,
.tab-pid_tuning .refresh:hover {
background-color: #dedcdc;
2015-03-11 05:13:57 +00:00
}
2015-11-02 09:10:08 +00:00
.tab-pid_tuning .top-buttons {
float:right;
2015-11-03 00:02:41 +00:00
}
.tab-pid_tuning .fixed_band {
position: fixed;
bottom: 0px;
width: calc(100% - 0px);
background-color: #e4e4e4;
height: 50px;
box-shadow: rgba(0,0,0,0.00) 0 -3px 8px;
margin-bottom: 0px;
}
@media only screen and (max-width: 1055px), only screen and (max-device-width: 1055px) {
.tab-pid_tuning .fixed_band {
width: calc(100% - -10px);
bottom: 0px;
}
.tab-pid_tuning .fixed_band .save_btn a {
margin-right:10px;
}
2015-11-02 09:10:08 +00:00
}