mirror of https://github.com/ArduPilot/ardupilot
43 lines
631 B
CSS
43 lines
631 B
CSS
table.sortable {
|
|
spacing: 5px;
|
|
border: 1px solid #656575;
|
|
width: 90%;
|
|
}
|
|
|
|
table.sortable th {
|
|
margin: 5px;
|
|
}
|
|
|
|
table.sortable thead {
|
|
background-color:#eee;
|
|
color:#666666;
|
|
font-weight: bold;
|
|
cursor: default;
|
|
}
|
|
|
|
table.sortable td {
|
|
margin: 5px;
|
|
}
|
|
|
|
table.sortable td.mavlink_name {
|
|
color:#226633;
|
|
font-weight: bold;
|
|
width: 25%;
|
|
}
|
|
|
|
table.sortable td.mavlink_type {
|
|
color:#323232;
|
|
font-weight: normal;
|
|
width: 12%;
|
|
}
|
|
|
|
table.sortable td.mavlink_comment {
|
|
color:#555555;
|
|
font-weight: normal;
|
|
width: 60%;
|
|
}
|
|
|
|
p.description {
|
|
color:#808080;
|
|
font-weight: normal;
|
|
} |