betaflight-configurator/tabs/pid_tuning.css

101 lines
2.2 KiB
CSS
Raw Normal View History

.tab-pid_tuning {
}
2014-01-23 22:47:14 +00:00
.tab-pid_tuning input[type="number"]::-webkit-inner-spin-button {
border: 0;
}
2014-02-14 14:41:36 +00:00
.tab-pid_tuning table {
float: left;
2014-03-08 05:25:15 +00:00
2014-05-05 13:14:27 +00:00
margin-bottom: 10px;
2014-02-14 14:41:36 +00:00
border-collapse: collapse;
}
2014-03-08 05:25:15 +00:00
.tab-pid_tuning table,
.tab-pid_tuning table th,
2014-01-04 09:37:52 +00:00
.tab-pid_tuning table td {
2014-01-03 09:13:55 +00:00
padding: 4px;
border: 1px solid #8b8b8b;
}
2014-01-04 09:37:52 +00:00
.tab-pid_tuning table tr td:first-child {
text-align: center;
}
.tab-pid_tuning table td {
padding: 1px;
}
.tab-pid_tuning table tr:nth-child(odd) {
background-color: #ececec;
2014-01-04 09:37:52 +00:00
}
.tab-pid_tuning table input {
2014-05-05 13:14:27 +00:00
display: block;
width: calc(100% - 10px);
height: 20px;
line-height: 20px;
2014-03-08 05:25:15 +00:00
padding: 0 5px 0 5px;
text-align: right;
}
2014-02-14 14:41:36 +00:00
.tab-pid_tuning .profile {
float: left;
2014-03-08 05:25:15 +00:00
2014-05-05 13:14:27 +00:00
width: calc(18% - 2px); /* - border*/
2014-03-08 05:25:15 +00:00
2014-06-23 13:31:38 +00:00
border: 1px solid #8b8b8b;
2014-02-14 14:41:36 +00:00
}
.tab-pid_tuning .profile .head {
display: block;
2014-03-08 05:25:15 +00:00
2014-02-14 14:41:36 +00:00
text-align: center;
line-height: 20px;
font-weight: bold;
2014-03-08 05:25:15 +00:00
2014-06-23 13:31:38 +00:00
border-bottom: 1px solid #8b8b8b;
2014-02-14 14:41:36 +00:00
background-color: #ececec;
}
.tab-pid_tuning .profile input {
2014-05-05 13:14:27 +00:00
display: block;
2014-03-08 05:25:15 +00:00
2014-05-05 13:14:27 +00:00
width: calc(100% - 10px);
2014-02-14 14:41:36 +00:00
height: 20px;
2014-05-05 13:14:27 +00:00
2014-02-14 14:41:36 +00:00
line-height: 20px;
2014-05-05 13:14:27 +00:00
padding: 0 5px 0 5px;
text-align: right;
}
.tab-pid_tuning .pid_tuning {
width: 60%;
}
.tab-pid_tuning .pid_tuning .name {
width: 30%;
2014-02-14 14:41:36 +00:00
}
2014-01-04 09:37:52 +00:00
.tab-pid_tuning .rate-tpa {
float: right;
width: calc(40% - 10px); /* - ( "virtual" margin) */
2014-01-04 09:37:52 +00:00
}
.tab-pid_tuning .update,
.tab-pid_tuning .refresh {
display: block;
float: right;
2014-03-08 05:25:15 +00:00
2014-01-03 09:13:55 +00:00
height: 28px;
line-height: 28px;
2014-03-08 05:25:15 +00:00
2014-01-03 09:13:55 +00:00
padding: 0 15px 0 15px;
2014-03-08 05:25:15 +00:00
text-align: center;
2014-01-03 09:13:55 +00:00
font-weight: bold;
2014-03-08 05:25:15 +00:00
border: 1px solid silver;
2014-01-03 09:13:55 +00:00
background-color: #ececec;
}
.tab-pid_tuning .refresh {
margin-right: 10px;
2014-03-08 05:25:15 +00:00
}
.tab-pid_tuning .update:hover,
.tab-pid_tuning .refresh:hover {
2014-01-03 09:13:55 +00:00
background-color: #dedcdc;
}
.tab-pid_tuning .update.success {
border: 1px solid #43c84d;
}