1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00
betaflight/tabs/ports.css
Dominic Clifton 519de30f6e Allow saving of LED Strip configuratiion via MSP. Requires firmware
with new MSP_SET_LED_STRIP_CONFIG.

Remove some .toUpperCase() duplication since it was only needed for the
CLI commands panel.
Minor CSS cleanups.
Some variable and class renaming to align with firmware code.
2015-01-16 00:15:41 +00:00

59 lines
No EOL
944 B
CSS

.tab-ports {
position: relative;
}
#tab-ports-templates {
display: none;
}
.tab-ports .help {
padding: 10px;
background-color: #ffcb18;
margin-bottom: 10px;
}
.tab-ports table {
margin-bottom: 10px;
border-collapse: collapse;
}
.tab-ports table,
.tab-ports table th,
.tab-ports table td {
padding: 4px;
border: 1px solid #8b8b8b;
}
.tab-ports table tr td:first-child {
text-align: center;
}
.tab-ports table td {
padding: 2px 10px;
}
.tab-ports table thead tr:first-child,
.tab-ports table tr:nth-child(even) {
background-color: #ececec;
}
.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;
}