betaflight-configurator/tabs/ports.css

105 lines
1.6 KiB
CSS
Raw Normal View History

.tab-ports {
position: relative;
}
#tab-ports-templates {
display: none;
}
2015-10-28 19:23:48 +00:00
.tab-ports table {
margin-bottom: 10px;
2015-10-30 19:30:27 +00:00
width:100%;
border-collapse:collapse;
}
.tab-ports table,
.tab-ports table th,
.tab-ports table td {
2015-10-30 19:30:27 +00:00
border-left:0px;
border-right:0px;
border-top:0px;
border-right:1px solid #e4e4e4;
border-left:1px solid #e4e4e4;
}
.tab-ports table tr td:first-child {
2015-10-30 19:30:27 +00:00
text-align: left;
}
2015-10-30 19:30:27 +00:00
table.ports tr:first-child td:first-child { border-top-left-radius: 0px;
}
table.ports tr:first-child td:last-child { border-top-right-radius: 0px; }
.tab-ports table td {
2015-10-30 19:30:27 +00:00
border-bottom:1px solid #e4e4e4;
2015-10-30 19:32:16 +00:00
padding-top:4px;
padding-bottom:4px;
2015-10-30 19:30:27 +00:00
padding-left:5px;
padding-right:5px;
}
.tab-ports table thead tr:first-child,
.tab-ports table tr:nth-child(even) {
2015-10-30 19:30:27 +00:00
background-color:#f9f9f9; }
.tab-ports table thead tr:first-child {
background-color:#e4e4e4;
font-size:14px;
height:25px;
font-family: 'open_sansregular', Arial;
}
.tab-ports .function input {
vertical-align: -2px;
}
.tab-ports .function label {
margin-right: 5px;
}
.tab-ports select {
border: 1px solid silver;
}
.tab-ports .save {
display: block;
float: right;
height: 28px;
line-height: 28px;
padding: 0 15px 0 15px;
text-align: center;
font-weight: bold;
border: 1px solid silver;
background-color: #ececec;
}
.tab-ports .save:hover {
background-color: #dedcdc;
}
2015-10-28 19:23:48 +00:00
2015-10-23 13:42:32 +00:00
.tab-ports .require-support {
display:none;
}
.tab-ports.supported .require-support {
display:block;
}
2015-10-23 13:42:32 +00:00
.tab-ports .require-upgrade {
display:block;
}
.tab-ports.supported .require-upgrade {
display:none;
}